From 2881131d7cf646c131fa96715c5e1ef0eafc950e Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 15 Apr 2025 17:52:13 +0200 Subject: [PATCH] #7459 --- app/SubForms/Link/Base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)']]); } /** -- 2.39.5