diff --git a/nezha-fronted/package.json b/nezha-fronted/package.json
index 9073baa7a..72628e518 100644
--- a/nezha-fronted/package.json
+++ b/nezha-fronted/package.json
@@ -5,7 +5,7 @@
"author": "",
"private": true,
"scripts": {
- "dev": "node --max-old-space-size=6000 ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --progress --config build/webpack.dev.conf.js",
+ "dev": "node --max-old-space-size=10240 ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"build": "node build/build.js",
"lint": "eslint --fix --ext .js,.vue src"
diff --git a/nezha-fronted/src/components/common/bottomBox/bottomBox.vue b/nezha-fronted/src/components/common/bottomBox/bottomBox.vue
index 632bb4200..fe74149b4 100644
--- a/nezha-fronted/src/components/common/bottomBox/bottomBox.vue
+++ b/nezha-fronted/src/components/common/bottomBox/bottomBox.vue
@@ -20,6 +20,7 @@
+
@@ -172,11 +173,18 @@ export default {
dc: {
cabinet: [
{ prop: 'cabinet', name: this.$t('config.dc.cabinets'), active: true },
- { prop: 'asset', name: this.$t('asset.assets'), active: false }
+ { prop: 'asset', name: this.$t('asset.assets'), active: false },
+ { prop: 'alertMessageTab', name: this.$t('overall.alert'), active: false }
],
asset: [
{ prop: 'cabinet', name: this.$t('config.dc.cabinets'), active: false },
- { prop: 'asset', name: this.$t('asset.assets'), active: true }
+ { prop: 'asset', name: this.$t('asset.assets'), active: true },
+ { prop: 'alertMessageTab', name: this.$t('overall.alert'), active: false }
+ ],
+ alertMessage: [
+ { prop: 'cabinet', name: this.$t('config.dc.cabinets'), active: false },
+ { prop: 'asset', name: this.$t('asset.assets'), active: false },
+ { prop: 'alertMessageTab', name: this.$t('overall.alert'), active: true }
]
}
diff --git a/nezha-fronted/src/components/common/language/en.js b/nezha-fronted/src/components/common/language/en.js
index 640dda90b..fcab68c50 100644
--- a/nezha-fronted/src/components/common/language/en.js
+++ b/nezha-fronted/src/components/common/language/en.js
@@ -210,7 +210,7 @@ const en = {
panelId: 'ID' // ID
},
// 图表-侧滑框
- createChartTitle: 'New chart', // "新增图表"
+ createChartTitle: 'New Chart Template', // "新增图表"
editChartTitle: 'Edit', // "编辑图表"
chartForm: {
chartId: 'ID',
@@ -677,6 +677,7 @@ const en = {
type: 'Type', // "类别"
checkTime: 'Check time',
dataCenter: 'Data center',
+ name : 'Name',
agent: {
agent: 'Agent',
title: 'Download agent',
diff --git a/nezha-fronted/src/components/common/rightBox/agentBox.vue b/nezha-fronted/src/components/common/rightBox/agentBox.vue
index ca96dc14b..abe450ca1 100644
--- a/nezha-fronted/src/components/common/rightBox/agentBox.vue
+++ b/nezha-fronted/src/components/common/rightBox/agentBox.vue
@@ -2,7 +2,7 @@