Skip to content

Commit

Permalink
fix(login atuh): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
reynaldi rangga p committed Dec 1, 2021
1 parent fd96602 commit 0876929
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/auth/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const props = defineProps({
type: Boolean,
default: false,
},
autocomplateForm: {
autocompleteForm: {
type: String,
default: 'on',
},
Expand All @@ -73,7 +73,7 @@ const {
forgotPasswordText,
loginText,
hideRememberMe,
autocomplateForm,
autocompleteForm,
} = toRefs(props);
const emit = defineEmits(['submit', 'loginSSO']);
Expand Down Expand Up @@ -126,7 +126,7 @@ const onSubmit = handleSubmit((values) => {
{{ message }}
</v-alert>

<form @submit.prevent="onSubmit" :autocomplete="autocomplateForm">
<form @submit.prevent="onSubmit" :autocomplete="autocompleteForm">
<div class="mt-8">
<label
for="email"
Expand All @@ -141,7 +141,7 @@ const onSubmit = handleSubmit((values) => {
:placeholder="usernameText"
name="email"
prepend
:autocomplete="autocomplateForm"
:autocomplete="autocompleteForm"
:error="!!errors.email"
:error-messages="[errors.email]"
error-class="min-h-[20px]"
Expand All @@ -168,7 +168,7 @@ const onSubmit = handleSubmit((values) => {
:placeholder="passwordText"
type="password"
name="password"
:autocomplete="autocomplateForm"
:autocomplete="autocompleteForm"
prepend
:error="!!errors.password"
:error-messages="[errors.password]"
Expand Down

0 comments on commit 0876929

Please sign in to comment.