Skip to content

Commit d85b6f6

Browse files
committed
fixes in profile
1 parent c3ba884 commit d85b6f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utils/app/components/Profile.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<!-- edit user form -->
1010
<v-form v-model="userValid">
1111
<v-card-text>
12-
<v-alert v-if="userUpdated" outline color="success" icon="check_circle" value="true">
12+
<v-alert :value="userUpdated" outlined color="success" icon="check_circle">
1313
{{ $t('global.profile.user.updated') }}
1414
</v-alert>
1515
<!-- User login -->
@@ -53,10 +53,10 @@
5353
<!-- edit password form -->
5454
<v-form v-model="passwordValid">
5555
<v-card-text>
56-
<v-alert v-if="userPasswordUpdated" outline color="success" icon="check_circle" value="true">
56+
<v-alert :value="userPasswordUpdated" outlined color="success" icon="check_circle">
5757
{{ $t('global.profile.password.updated') }}
5858
</v-alert>
59-
<v-alert v-else-if="userPasswordUpdateError" outline color="error" icon="warning" value="true">
59+
<v-alert :value="userPasswordUpdateError" outlined color="error" icon="warning">
6060
{{ $t('global.profile.password.updateError') }}
6161
<br> {{ password.updateErrorMsg }}
6262
</v-alert>

0 commit comments

Comments
 (0)