Skip to content

Commit ba72647

Browse files
github-actions[bot]geraj1010
authored andcommitted
[v2-10-test] Set Autocomplete Off on Login Form - Main (#44929) (#44940)
* #44019 - Set autocomplete to off for username and password login form * fixed static check (cherry picked from commit c77c7f0) Co-authored-by: James Regan <[email protected]>
1 parent bb5df2b commit ba72647

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

airflow/www/static/js/main.js

+4
Original file line numberDiff line numberDiff line change
@@ -286,4 +286,8 @@ $(document).ready(() => {
286286

287287
// Global Tooltip selector
288288
$(".js-tooltip").tooltip();
289+
290+
// Turn off autocomplete for login form
291+
$("#username:input")[0].autocomplete = "off";
292+
$("#password:input")[0].autocomplete = "off";
289293
});

0 commit comments

Comments
 (0)