chg: make the herited info pane closed by default in admin edit form for articles

This commit is contained in:
Valentin Lab
2025-12-13 21:46:45 +01:00
parent 7887e2d532
commit 2fc091d754

View File

@@ -2,7 +2,7 @@
@component('components.layout.box-collapse', [ @component('components.layout.box-collapse', [
'id' => 'product_description_box', 'id' => 'product_description_box',
'title' => 'Informations héritées', 'title' => 'Informations héritées',
'collapsed' => $collapsed ?? false, 'collapsed' => $collapsed ?? true,
]) ])
@foreach ($article['inherited'] as $inherited) @foreach ($article['inherited'] as $inherited)
@component('components.card', ['title' => $inherited['name'], 'class' => 'mb-3']) @component('components.card', ['title' => $inherited['name'], 'class' => 'mb-3'])