Skip to content

Commit

Permalink
Update error translation handling in Settings.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdl committed Feb 21, 2024
1 parent 0410be1 commit d1df832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
v-model="host_server"
placeholder="minio.mydomain.org"
:disabled="loading.getConfiguration || loading.configureModule"
:invalid-message="error.host_server"
:invalid-message="$t(error.host_server)"
ref="host_server"
></cv-text-input>
<cv-text-input
:label="$t('settings.host_console')"
v-model="host_console"
placeholder="console.minio.mydomain.org"
:disabled="loading.getConfiguration || loading.configureModule"
:invalid-message="error.host_console"
:invalid-message="$t(error.host_console)"
ref="host_console"
></cv-text-input>
<cv-toggle
Expand Down

0 comments on commit d1df832

Please sign in to comment.