Skip to content

Commit

Permalink
fix: bug for auth pages
Browse files Browse the repository at this point in the history
  • Loading branch information
lukicenturi committed Aug 1, 2023
1 parent 2f0114a commit 43b4336
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/account/signup/SignupAddress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const { t } = useI18n();
autocomplete="address-line2"
dense
:label="t('auth.signup.address.form.address_line_2')"
:hint="t('auth.common.required')"
:hint="t('auth.common.optional')"
:error-messages="toMessages(v$.address2)"
@update:model-value="updateValue('address2', $event)"
@blur="v$.address2.$touch()"
Expand Down
1 change: 1 addition & 0 deletions components/common/ButtonLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const getColor = (active: boolean, exact: boolean) => {
<RuiButton
v-bind="{
variant: 'text',
type: 'button',
color: getColor(link?.isActive, link?.isExactActive),
...attrs,
}"
Expand Down
1 change: 1 addition & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"line_3": "Your password can't be a commonly used password.",
"line_4": "Your password can't be entirely numeric."
},
"optional": "Optional.",
"required": "Required."
},
"login": {
Expand Down

0 comments on commit 43b4336

Please sign in to comment.