Browse Source

fix: admin system translations typo

pull/880/head 2.0.0-beta.180
Nick 5 years ago
parent
commit
de2eeec506
1 changed files with 2 additions and 2 deletions
  1. 4
      client/components/admin/admin-system.vue

4
client/components/admin/admin-system.vue

@ -91,7 +91,7 @@
v-list-tile-title(v-html='dbVersion')
v-list-tile-sub-title {{ info.dbHost }}
v-alert.mt-3(:value='isDbLimited', color='deep-orange', icon='warning') {{ $t('admin.system.dbPartialSupport') }}
v-alert.mt-3(:value='isDbLimited', color='deep-orange', icon='warning') {{ $t('admin:system.dbPartialSupport') }}
</template>
<script>
@ -138,7 +138,7 @@ export default {
async refresh() {
await this.$apollo.queries.info.refetch()
this.$store.commit('showNotification', {
message: this.$t('admin.system.refreshSuccess'),
message: this.$t('admin:system.refreshSuccess'),
style: 'success',
icon: 'cached'
})

Loading…
Cancel
Save