Commit e48b816f authored by NGPixel's avatar NGPixel

fix: disable browser autocomplete on search form

parent 05e8a71c
......@@ -15,6 +15,7 @@
prepend-inner-icon='mdi-magnify'
:loading='searchIsLoading'
@keyup.enter='searchEnter'
autocomplete='off'
)
v-layout(row)
v-flex(xs5, md4)
......@@ -67,6 +68,7 @@
@blur='searchBlur'
@keyup.down='searchMove(`down`)'
@keyup.up='searchMove(`up`)'
autocomplete='off'
)
v-tooltip(bottom)
template(v-slot:activator='{ on }')
......
......@@ -190,6 +190,7 @@
:label='$t(`profile:auth.newPassword`)'
type='password'
prepend-inner-icon='mdi-textbox-password'
autocomplete='off'
counter='255'
loading
)
......@@ -201,6 +202,7 @@
:label='$t(`profile:auth.verifyPassword`)'
type='password'
prepend-inner-icon='mdi-textbox-password'
autocomplete='off'
hide-details
)
v-card-chin
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment