Skip to content

Commit 1289e15

Browse files
authored
fix: Fix the issue of abnormal display on the monitoring page (#8007)
1 parent 1f716cb commit 1289e15

File tree

12 files changed

+73
-50
lines changed

12 files changed

+73
-50
lines changed

frontend/src/lang/modules/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ const message = {
338338
aiTools: 'AI',
339339
container: 'Container',
340340
cronjob: 'Cronjob',
341-
host: 'Host',
341+
system: 'System',
342342
security: 'Security',
343343
files: 'File',
344344
monitor: 'Monitor',

frontend/src/lang/modules/ja.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,6 @@ const message = {
332332
aiTools: 'AI',
333333
container: 'コンテナ|コンテナ',
334334
cronjob: 'クロンジョブ|クロンの仕事',
335-
host: 'ホスト|ホスト',
336335
system: 'システム',
337336
security: '安全',
338337
files: 'ファイル',

frontend/src/lang/modules/ko.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ const message = {
333333
aiTools: 'AI',
334334
container: '컨테이너 | 컨테이너들',
335335
cronjob: '크론 작업 | 크론 작업들',
336-
host: '호스트 | 호스트들',
337336
system: '시스템',
338337
security: '보안',
339338
files: '파일',

frontend/src/lang/modules/ms.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,6 @@ const message = {
339339
aiTools: 'AI',
340340
container: 'Container | Containers',
341341
cronjob: 'Cron Job | Cron Jobs',
342-
host: 'Host | Hosts',
343342
system: 'System',
344343
security: 'Security',
345344
files: 'Files',

frontend/src/lang/modules/pt-br.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ const message = {
337337
aiTools: 'AI',
338338
container: 'Container | Containers',
339339
cronjob: 'Tarefa Cron | Tarefas Cron',
340-
host: 'Host | Hosts',
341340
system: 'Sistema',
342341
security: 'Segurança',
343342
files: 'Arquivos',

frontend/src/lang/modules/ru.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ const message = {
333333
aiTools: 'AI',
334334
container: 'Контейнер | Контейнеры',
335335
cronjob: 'Cron | Задачи Cron',
336-
host: 'Хост | Хосты',
337336
system: 'Система',
338337
security: 'Безопасность',
339338
files: 'Файлы',

frontend/src/lang/modules/tw.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ const message = {
332332
aiTools: 'AI',
333333
container: '容器',
334334
cronjob: '計劃任務',
335-
host: '主機',
335+
system: '系統',
336336
files: '文件',
337337
monitor: '監控',
338338
terminal: '終端',

frontend/src/lang/modules/zh.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ const message = {
330330
aiTools: 'AI',
331331
container: '容器',
332332
cronjob: '计划任务',
333-
host: '主机',
333+
system: '系统',
334334
files: '文件',
335335
monitor: '监控',
336336
terminal: '终端',

frontend/src/routers/modules/host.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const hostRouter = {
77
redirect: '/hosts/security',
88
meta: {
99
icon: 'p-host',
10-
title: 'menu.host',
10+
title: 'menu.system',
1111
},
1212
children: [
1313
{

frontend/src/views/home/app/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<template #header-r>
55
<el-popover placement="left" :width="226" trigger="click">
66
<el-input size="small" v-model="filter" clearable @input="loadOption()" />
7-
<el-table :show-header="false" :data="options" stripe max-height="500px">
7+
<el-table :show-header="false" :data="options" max-height="500px">
88
<el-table-column prop="key" width="120" show-overflow-tooltip />
99
<el-table-column prop="name">
1010
<template #default="{ row }">

0 commit comments

Comments
 (0)