From cfbcf88c858b6e52ff1cc8c6473ca3933c67f17f Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 16 Aug 2022 19:08:57 +0200 Subject: [PATCH] wip #5383 @0.25 --- app/SubForms/FluidbookChapter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/SubForms/FluidbookChapter.php b/app/SubForms/FluidbookChapter.php index 085c1bb29..f97a74651 100644 --- a/app/SubForms/FluidbookChapter.php +++ b/app/SubForms/FluidbookChapter.php @@ -19,7 +19,7 @@ class FluidbookChapter extends SubForm $this->addField('label', Text::class, __('Nom du chapitre'), ['when' => $when, 'placeholder' => __('Label')]); $this->addField('page', Text::class, __('Page'), ['when' => $when, 'placeholder' => __('Page')]); $this->addField('color', Color::class, __('Couleur'), ['when' => $when, 'allows_empty' => true, 'allows_alpha' => false, 'default' => null]); - $this->addField('decoration', SelectFromArray::class, __('Type'), ['ajax' => false, 'allows_null' => false, 'options' => + $this->addField('decoration', SelectFromArray::class, __('Type'), ['ajax' => false, 'allows_null' => false, 'options' => [ 'regular' => __('Chapitre normal'), 'column_head' => __('Titre de colonne') . ' (!!!)', -- 2.39.5