diff --git a/frontend/src/api/interface/setting.ts b/frontend/src/api/interface/setting.ts index b59018801..677c8800d 100644 --- a/frontend/src/api/interface/setting.ts +++ b/frontend/src/api/interface/setting.ts @@ -140,6 +140,7 @@ export namespace Setting { upload: string; } export interface UpgradeInfo { + testVersion: string; newVersion: string; latestVersion: string; releaseNote: string; diff --git a/frontend/src/lang/modules/en.ts b/frontend/src/lang/modules/en.ts index 4a262bcdb..a47646532 100644 --- a/frontend/src/lang/modules/en.ts +++ b/frontend/src/lang/modules/en.ts @@ -58,6 +58,8 @@ const message = { fullscreen: 'Fullscreen', quitFullscreen: 'Quit Fullscreen', update: 'Edit', + showAll: 'Show All', + hideSome: 'Hide Some', }, search: { timeStart: 'Time start', diff --git a/frontend/src/lang/modules/tw.ts b/frontend/src/lang/modules/tw.ts index 7fcde3b8d..6e6987084 100644 --- a/frontend/src/lang/modules/tw.ts +++ b/frontend/src/lang/modules/tw.ts @@ -58,6 +58,8 @@ const message = { fullscreen: '全屏', quitFullscreen: '退出全屏', update: '編輯', + showAll: '顯示所有', + hideSome: '隱藏部分', }, search: { timeStart: '開始時間', diff --git a/frontend/src/lang/modules/zh.ts b/frontend/src/lang/modules/zh.ts index e1900f0be..d082f39f1 100644 --- a/frontend/src/lang/modules/zh.ts +++ b/frontend/src/lang/modules/zh.ts @@ -58,6 +58,8 @@ const message = { fullscreen: '全屏', quitFullscreen: '退出全屏', update: '编辑', + showAll: '显示所有', + hideSome: '隐藏部分', }, search: { timeStart: '开始时间', diff --git a/frontend/src/views/home/status/index.vue b/frontend/src/views/home/status/index.vue index 52a7a6bdd..bb131191b 100644 --- a/frontend/src/views/home/status/index.vue +++ b/frontend/src/views/home/status/index.vue @@ -1,12 +1,7 @@