From 2fc091d7547b55a2c2272fcda8c53aeda8e03296 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Sat, 13 Dec 2025 21:46:45 +0100 Subject: [PATCH] chg: make the herited info pane closed by default in admin edit form for articles --- .../Admin/Shop/Articles/partials/product/description.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/Admin/Shop/Articles/partials/product/description.blade.php b/resources/views/Admin/Shop/Articles/partials/product/description.blade.php index baede4ac..553db9d9 100644 --- a/resources/views/Admin/Shop/Articles/partials/product/description.blade.php +++ b/resources/views/Admin/Shop/Articles/partials/product/description.blade.php @@ -2,7 +2,7 @@ @component('components.layout.box-collapse', [ 'id' => 'product_description_box', 'title' => 'Informations héritées', - 'collapsed' => $collapsed ?? false, + 'collapsed' => $collapsed ?? true, ]) @foreach ($article['inherited'] as $inherited) @component('components.card', ['title' => $inherited['name'], 'class' => 'mb-3'])