-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(webui): change language to English, code style and minor fixes
Signed-off-by: xiayu.lyt <xiayu.lyt@alibaba-inc.com>
- Loading branch information
Showing
43 changed files
with
324 additions
and
356 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
.webFrame { | ||
border: none; | ||
width: 100%; | ||
height: 80vh; | ||
min-height: 860px; | ||
border: none; | ||
width: 100%; | ||
height: 80vh; | ||
min-height: 860px; | ||
} | ||
|
||
.cardAction { | ||
display: flex; | ||
justify-content: flex-end; | ||
padding: 0; | ||
display: flex; | ||
justify-content: flex-end; | ||
padding: 0; | ||
} | ||
|
||
.cardContent { | ||
padding: 0; | ||
margin-top: 0; | ||
padding: 0; | ||
margin-top: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,50 @@ | ||
const asideMenuConfig = [ | ||
{ | ||
name: "主页", | ||
name: "Network Graph", | ||
path: "/", | ||
}, | ||
{ | ||
name: '监控', | ||
name: 'Monitoring', | ||
children: [ | ||
{ | ||
name: "大盘", | ||
name: "Dashboard", | ||
path: "/monitoring/dashboard" | ||
}, | ||
{ | ||
name: "事件", | ||
name: "Events", | ||
path: "/monitoring/events" | ||
}, | ||
{ | ||
name: "链路图", | ||
path: "/flow" | ||
name: "Network Graph", | ||
path: "/monitoring/flow" | ||
} | ||
] | ||
}, | ||
{ | ||
name: '诊断', | ||
name: 'Diagnosis', | ||
children: [ | ||
{ | ||
name: "连通性诊断", | ||
name: "Connectivity Diagnosis", | ||
path: "/diagnosis", | ||
}, | ||
{ | ||
name: "抓包", | ||
name: "Packet Capturing", | ||
path: "/capture" | ||
}, | ||
{ | ||
name: "延迟探测(PingMesh)", | ||
name: "Latency Detection", | ||
path: "/pingmesh" | ||
} | ||
] | ||
}, | ||
{ | ||
name: '配置', | ||
name: 'Configuration', | ||
children: [ | ||
{ | ||
name: '节点配置', | ||
name: 'Node Configuration', | ||
path: '/config', | ||
} | ||
], | ||
}, | ||
]; | ||
|
||
export { asideMenuConfig }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
webui/src/pages/capture/components/captureForm/index.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
.btn { | ||
margin-left: 5px; | ||
margin-left: 5px; | ||
} | ||
.custom { | ||
border: 1px dashed; | ||
padding: 4px; | ||
display: inline-block; | ||
border: 1px dashed; | ||
padding: 4px; | ||
display: inline-block; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.