Skip to content

Commit

Permalink
Sync UI (apache#6690)
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-sheng authored Apr 6, 2021
1 parent 411bcf2 commit 9661139
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ Release Notes.
* Fix the problem that the footer and topology group is shaded when the topology radiation is displayed.
* When the topology radiation chart is displayed, the corresponding button should be highlighted.
* Refactor the route mapping, Dynamically import routing components, Improve first page loading performance.
* Support topology of two mutually calling services.
* Implement a type of table chart in the dashboard.
* Support event in the dashboard

#### Documentation
* Polish documentation due to we have covered all tracing, logging, and metrics fields.
Expand Down
2 changes: 1 addition & 1 deletion skywalking-ui
Submodule skywalking-ui updated 50 files
+21 −1 src/assets/lang/en.ts
+21 −1 src/assets/lang/zh.ts
+1 −2 src/components/rk-select.vue
+10 −0 src/constants/constant.ts
+25 −0 src/graph/fragments/dashboard.ts
+3 −0 src/graph/query/dashboard.ts
+1 −0 src/main.ts
+101 −7 src/store/modules/dashboard/dashboard-data.ts
+9 −0 src/store/modules/dashboard/mutation-types.ts
+1 −39 src/store/modules/global/index.ts
+75 −35 src/store/modules/global/selectors.ts
+34 −1 src/types/dashboard.d.ts
+37 −0 src/utils/dateFormat.ts
+41 −0 src/views/components/dashboard/charts/chart-bar.vue
+0 −75 src/views/components/dashboard/charts/chart-brief.vue
+0 −61 src/views/components/dashboard/charts/chart-count.vue
+145 −107 src/views/components/dashboard/charts/chart-edit.vue
+1 −0 src/views/components/dashboard/charts/chart-heap.vue
+1 −0 src/views/components/dashboard/charts/chart-heatmap.vue
+0 −47 src/views/components/dashboard/charts/chart-instance.vue
+41 −0 src/views/components/dashboard/charts/chart-line.vue
+1 −1 src/views/components/dashboard/charts/chart-num.vue
+1 −0 src/views/components/dashboard/charts/chart-sankey.vue
+1 −1 src/views/components/dashboard/charts/chart-slow.vue
+116 −0 src/views/components/dashboard/charts/chart-table.vue
+0 −69 src/views/components/dashboard/charts/chart-trace.vue
+1 −0 src/views/components/dashboard/charts/constant.ts
+2 −10 src/views/components/dashboard/charts/index.ts
+22 −0 src/views/components/dashboard/constant.ts
+3 −3 src/views/components/dashboard/dashboard-comp.vue
+79 −12 src/views/components/dashboard/dashboard-item.vue
+490 −0 src/views/components/dashboard/tool-bar/dashboard-events.vue
+36 −39 src/views/components/dashboard/tool-bar/tool-bar-btns.vue
+135 −66 src/views/components/dashboard/tool-bar/tool-bar.vue
+2 −2 src/views/components/dashboard/tool-group.vue
+16 −39 src/views/components/dashboard/tool-nav.vue
+3 −4 src/views/components/log/log-bar.vue
+1 −1 src/views/components/log/log-conditions.vue
+0 −1 src/views/components/log/log-service-detail.vue
+1 −4 src/views/components/profile/profile-task.vue
+ src/views/components/topology/assets/MONGOOSE.png
+ src/views/components/topology/assets/SEATA.png
+18 −2 src/views/components/topology/chart/topo.vue
+5 −1 src/views/components/topology/topo-aside.vue
+1 −1 src/views/components/topology/topo-endpoint-dependency.vue
+1 −1 src/views/components/trace/trace-search.vue
+4 −10 src/views/containers/dashboard.vue
+60 −25 src/views/containers/topology/endpoint/index.vue
+69 −29 src/views/containers/topology/instance/index.vue
+0 −1 vue.config.js

0 comments on commit 9661139

Please sign in to comment.