Skip to content

Commit

Permalink
fix(bytes): fix display error
Browse files Browse the repository at this point in the history
  • Loading branch information
ysfscream committed Mar 24, 2022
1 parent e3879de commit 10b430b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/components/BytesStatistics.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
>
<el-row :gutter="20">
<el-col :span="12">
<el-card class="version-card info-card"> Broker {{ $t('common.version') }}: {{ version }} </el-card>
<el-card class="version-card info-card"> Broker {{ $t('common.version') }}{{ version }} </el-card>
</el-col>
<el-col :span="12">
<el-card class="uptime-card info-card"> {{ $t('common.uptime') }}: {{ uptime }} </el-card>
<el-card class="uptime-card info-card"> {{ $t('common.uptime') }}{{ uptime }} </el-card>
</el-col>
<el-col :span="24">
<el-card class="chart-card" v-loading="loading">
Expand Down
14 changes: 7 additions & 7 deletions src/lang/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,15 +220,15 @@ export default {
zh: '版本:',
en: 'Version: ',
tr: 'Versiyon: ',
ja: 'システムバージョン:',
hu: 'Verzió',
ja: 'システムバージョン',
hu: 'Verzió: ',
},
uptime: {
zh: '运行时间',
en: 'Uptime',
tr: 'Çalışma süresi',
ja: '稼働時間',
hu: 'Futásidő',
zh: '运行时间',
en: 'Uptime: ',
tr: 'Çalışma süresi: ',
ja: '稼働時間',
hu: 'Futásidő: ',
},
cloud: {
zh: '需要一个云原生的全托管 MQTT 服务?一键部署 <a href="https://www.emqx.com/zh/cloud/?utm_source=mqttx&utm_medium=app&utm_campaign=cloud" target="_blank" rel="noopener noreferrer">EMQX Cloud</a>!14 天免费试用!',
Expand Down

0 comments on commit 10b430b

Please sign in to comment.