Skip to content

Commit 3b88e3d

Browse files
committed
fix(help): 关于信息适配火狐浏览器
1 parent 55a2e1e commit 3b88e3d

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

web/dashboard/src/business/app-layout/header-components/Help.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<strong>{{ $t("commons.personal.version") }}: v1.1.2</strong>
1919
</div>
2020
<div style="padding:15px 20px;box-shadow:rgb(69 70 70) 0 -14px 24px -12px;">
21-
<el-row style="font-size: 6px;color: #ffffff;text-align: center">
21+
<el-row style="color: #ffffff;text-align: center">
2222
<el-col :span="6">
2323
<el-link @click="toGithub" class="iconfont iconhuaban88"><span>{{
2424
$t("commons.personal.project_url")

web/kubepi/src/business/app-layout/header-components/Help.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<strong>{{ $t("commons.personal.version") }}: v1.1.2</strong>
1919
</div>
2020
<div style="padding:15px 20px;box-shadow:rgb(69 70 70) 0 -14px 24px -12px;">
21-
<el-row style="font-size: 6px;color: #ffffff;text-align: center">
21+
<el-row style="color: #ffffff;text-align: center">
2222
<el-col :span="6">
2323
<el-link @click="toGithub" class="iconfont iconhuaban88"><span>{{
2424
$t("commons.personal.project_url")

web/kubepi/src/business/cluster-management/index.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,9 @@
8686

8787
<el-table-column min-width="200" fix>
8888
<template v-slot:default="{row}">
89-
<div><el-progress type="dashboard" :width="80" :format="formatCpu" :color="colors" :percentage="getCpuUsed(row)"></el-progress>
90-
<el-progress type="dashboard" style="white-space: pre-wrap;" :width="80" :format="formatMemory" :color="colors" :percentage="getMemoryUsed(row)"></el-progress>
89+
<div>
90+
<el-progress type="dashboard" :width="80" :format="formatCpu" :color="colors" :percentage="getCpuUsed(row)"></el-progress>
91+
<el-progress type="dashboard" :width="80" :format="formatMemory" :color="colors" :percentage="getMemoryUsed(row)"></el-progress>
9192
</div>
9293
</template>
9394
</el-table-column>
@@ -105,7 +106,7 @@
105106
fix/>
106107

107108

108-
<el-table-column :label="$t('commons.table.created_time')" min-width="120" fix>
109+
<el-table-column :label="$t('commons.table.imported_time')" min-width="120" fix>
109110
<template v-slot:default="{row}">
110111
{{ row.createAt | ageFormat }}
111112
</template>

web/kubepi/src/i18n/lang/en-US.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ const message = {
4646
name: "name",
4747
kind: "kind",
4848
created_time: "created at",
49+
imported_time: "imported at",
4950
status: "status",
5051
action: "action",
5152
creat_by: "created by",

web/kubepi/src/i18n/lang/zh-CN.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const message = {
5050
name: "名称",
5151
kind: "类型",
5252
created_time: "创建时间",
53+
imported_time: "导入时间",
5354
status: "状态",
5455
action: "操作",
5556
creat_by: "创建者",

0 commit comments

Comments
 (0)