From c88ec7e06fc9a00e9004a8ecc4d8bb5c372d17a6 Mon Sep 17 00:00:00 2001 From: benji-bitfly Date: Tue, 3 Sep 2024 15:28:17 +0200 Subject: [PATCH 1/2] feat:Set HTML attributes to prevent popups from third-party apps. BEDS-368 --- frontend/components/bc/searchbar/SearchbarMain.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/components/bc/searchbar/SearchbarMain.vue b/frontend/components/bc/searchbar/SearchbarMain.vue index d19c6292b..9e0c7240f 100644 --- a/frontend/components/bc/searchbar/SearchbarMain.vue +++ b/frontend/components/bc/searchbar/SearchbarMain.vue @@ -847,6 +847,7 @@ function informationIfHiddenResults(): string { :placeholder="t(SearchbarPurposeInfo[barPurpose].placeHolder)" @keyup="(e) => handleKeyPressInTextField(e.key)" @focus="globalState.showDropdown = true" + autocomplete="off" > Date: Tue, 3 Sep 2024 15:41:24 +0200 Subject: [PATCH 2/2] Fix lint comment. --- frontend/components/bc/searchbar/SearchbarMain.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/bc/searchbar/SearchbarMain.vue b/frontend/components/bc/searchbar/SearchbarMain.vue index 9e0c7240f..587c513df 100644 --- a/frontend/components/bc/searchbar/SearchbarMain.vue +++ b/frontend/components/bc/searchbar/SearchbarMain.vue @@ -845,9 +845,9 @@ function informationIfHiddenResults(): string { :class="[barShape, colorTheme]" type="text" :placeholder="t(SearchbarPurposeInfo[barPurpose].placeHolder)" + autocomplete="off" @keyup="(e) => handleKeyPressInTextField(e.key)" @focus="globalState.showDropdown = true" - autocomplete="off" >