diff --git a/frontend/src/lang/modules/en.ts b/frontend/src/lang/modules/en.ts
index 93af6aa2a..832264e7e 100644
--- a/frontend/src/lang/modules/en.ts
+++ b/frontend/src/lang/modules/en.ts
@@ -1262,6 +1262,7 @@ const message = {
noEdit: 'The file has not been modified, no need to do this!',
noNameFolder: 'Untitled Folder',
noNameFile: 'Untitled File',
+ minimap: 'Code Mini Map',
},
ssh: {
autoStart: 'Auto Start',
diff --git a/frontend/src/lang/modules/tw.ts b/frontend/src/lang/modules/tw.ts
index bece7ee46..1ab29e2b4 100644
--- a/frontend/src/lang/modules/tw.ts
+++ b/frontend/src/lang/modules/tw.ts
@@ -1199,6 +1199,7 @@ const message = {
noEdit: '檔案未修改,無需此操作!',
noNameFolder: '未命名資料夾',
noNameFile: '未命名檔案',
+ minimap: '縮略圖',
},
ssh: {
autoStart: '開機自啟',
diff --git a/frontend/src/lang/modules/zh.ts b/frontend/src/lang/modules/zh.ts
index 3e11f5e89..5503b1f3a 100644
--- a/frontend/src/lang/modules/zh.ts
+++ b/frontend/src/lang/modules/zh.ts
@@ -1201,6 +1201,7 @@ const message = {
noEdit: '文件未修改,无需此操作!',
noNameFolder: '未命名文件夹',
noNameFile: '未命名文件',
+ minimap: '缩略图',
},
ssh: {
autoStart: '开机自启',
diff --git a/frontend/src/styles/common.scss b/frontend/src/styles/common.scss
index d65a732e7..f6a3cead5 100644
--- a/frontend/src/styles/common.scss
+++ b/frontend/src/styles/common.scss
@@ -447,6 +447,10 @@ html {
background-color: #e5eefd;
}
+.monaco-editor-tree-light .el-tree-node.is-current > .el-tree-node__content {
+ background-color: #e5eefd;
+}
+
.monaco-editor-tree-dark .el-tree-node__content:hover {
background-color: #111417;
}
diff --git a/frontend/src/views/host/file-management/code-editor/index.vue b/frontend/src/views/host/file-management/code-editor/index.vue
index 3e35680bd..ca0676ec9 100644
--- a/frontend/src/views/host/file-management/code-editor/index.vue
+++ b/frontend/src/views/host/file-management/code-editor/index.vue
@@ -57,6 +57,12 @@