From 795a7ffc2d5619f4c2c93cd61b99239028cabe34 Mon Sep 17 00:00:00 2001 From: pabois <pierreandre.boissinot@noesya.coop> Date: Thu, 13 Jul 2023 12:23:50 +0200 Subject: [PATCH] autocomplete --- app/views/admin/communication/websites/_form.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/admin/communication/websites/_form.html.erb b/app/views/admin/communication/websites/_form.html.erb index 0ab8c8f5c..f65a96401 100644 --- a/app/views/admin/communication/websites/_form.html.erb +++ b/app/views/admin/communication/websites/_form.html.erb @@ -22,7 +22,7 @@ <%= f.input :deployment_status_badge, as: :string, input_html: { - autocomplete: 'off', + autocomplete: 'deployment_status_badge', role: 'presentation' } %> @@ -33,7 +33,7 @@ placeholder: masked_string(f.object.access_token), hint: t("simple_form.hints.communication_website.access_token_#{f.object.access_token.blank? ? 'without' : 'with'}_existing").html_safe, input_html: { - autocomplete: 'off', + autocomplete: 'access_token', role: 'presentation' } %> -- GitLab