Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
feat(user): change the variant of name field
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethTrecy committed Dec 11, 2022
1 parent 02a597b commit 6475cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/settings/profile.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ const mayEditProfile = computed<boolean>(() => {
return isPermitted
})
const nameFieldStatus = ref<FieldStatus>(mayEditProfile.value ? "locked" : "disabled")
const nameFieldStatus = ref<FieldStatus>(mayEditProfile.value ? "enabled" : "disabled")
const receivedErrors = ref<string[]>([])
const successMessages = ref<string[]>([])
Expand Down

0 comments on commit 6475cdf

Please sign in to comment.