Skip to content

Commit

Permalink
Merge pull request #2946 from threefoldtech/development_2.6_inputs
Browse files Browse the repository at this point in the history
Fix profile manager inputs autocomplete
  • Loading branch information
samaradel authored Jun 10, 2024
2 parents a87b0e7 + a2b967a commit f36b8ff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/playground/src/weblets/profile_manager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@
}"
:disabled="creatingAccount || activatingAccount || activating"
@click:append="reloadValidation"
autocomplete="off"
>
<template v-slot:prepend-inner v-if="validationProps.hint || validationProps.error">
<v-icon :color="validationProps.error ? 'red' : 'green'">
Expand Down Expand Up @@ -257,6 +258,7 @@
v-model="email"
v-bind="props"
:disabled="creatingAccount || activatingAccount || activating"
autocomplete="off"
/>
</input-validator>

Expand All @@ -283,6 +285,7 @@
v-model="password"
v-bind="{ ...passwordInputProps, ...validationProps }"
:disabled="creatingAccount || activatingAccount || activating"
autocomplete="off"
/>
</div>
</template>
Expand All @@ -305,6 +308,7 @@
...validationProps,
}"
:disabled="creatingAccount || activatingAccount || activating"
autocomplete="off"
/>
</InputValidator>
</PasswordInputWrapper>
Expand Down

0 comments on commit f36b8ff

Please sign in to comment.