Add autocomplete fields

This commit is contained in:
Douglas Barone 2022-04-07 10:10:34 -04:00
parent 90d5b9c01a
commit 82db530bef
2 changed files with 9 additions and 0 deletions

View File

@ -1,8 +1,15 @@
<template>
<div>
<input
autocomplete="false"
name="hidden"
type="text"
style="display: none"
/>
<v-text-field
v-model="newPassword"
class="mt-6"
autocomplete="off"
:rules="[
() =>
!newPassword.length ||
@ -30,6 +37,7 @@
<v-expand-transition>
<v-text-field
v-show="!show"
autocomplete="off"
v-model="passwordConfirmation"
:rules="[
() =>

View File

@ -5,6 +5,7 @@
<v-autocomplete
name="user-select"
no-autocomplete
autocomplete="off"
:search-input.sync="search"
:items="items"
:loading="$apollo.queries.users.loading"