From: Vincent Vanwaelscappel Date: Tue, 15 Apr 2025 15:52:13 +0000 (+0200) Subject: #7459 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=2881131d7cf646c131fa96715c5e1ef0eafc950e;p=fluidbook-toolbox.git #7459 --- diff --git a/app/SubForms/Link/Base.php b/app/SubForms/Link/Base.php index a6678d0a0..90b6b0ac6 100644 --- a/app/SubForms/Link/Base.php +++ b/app/SubForms/Link/Base.php @@ -237,7 +237,7 @@ class Base extends Form protected function addVisibilityFields() { $this->addField('header_visibility', FormSection::class, __('Visibilité')); - $this->addField('visibility_os', SelectFromArray::class, __('Afficher sur les systèmes'), ['ajax' => false, 'allows_null' => false, 'default' => 'all', 'options' => ['all' => __('Tous'), 'desktop' => 'Desktop (Windows, MacOS, Linux)', 'mobile' => __('iOS, iPadOS, Android, ChromeOS')]]); + $this->addField('visibility_os', SelectFromArray::class, __('Afficher sur les systèmes'), ['ajax' => false, 'allows_null' => false, 'default' => 'all', 'options' => ['all' => __('Tous'), 'desktop' => 'Desktop (Windows, MacOS, Linux)', 'mobile' => 'Mobile (iOS, iPadOS, Android, ChromeOS)']]); } /**