diff --git a/frontend/src/components/canvas/custom-component/UserView.vue b/frontend/src/components/canvas/custom-component/UserView.vue index cfb9e7c787..2ebdf30eb3 100644 --- a/frontend/src/components/canvas/custom-component/UserView.vue +++ b/frontend/src/components/canvas/custom-component/UserView.vue @@ -758,9 +758,11 @@ export default { this.chart.customStyle = param.viewInfo.customStyle this.chart.senior = param.viewInfo.senior this.chart.title = param.viewInfo.title + this.chart.stylePriority = param.viewInfo.stylePriority this.sourceCustomAttrStr = this.chart.customAttr this.sourceCustomStyleStr = this.chart.customStyle this.mergeScale() + this.mergeStyle() } } } diff --git a/frontend/src/views/chart/view/ChartEdit.vue b/frontend/src/views/chart/view/ChartEdit.vue index c77965e2b1..83d02e9891 100644 --- a/frontend/src/views/chart/view/ChartEdit.vue +++ b/frontend/src/views/chart/view/ChartEdit.vue @@ -1744,6 +1744,7 @@ export default { view.customFilter = JSON.stringify(this.view.customFilter) view.senior = JSON.stringify(this.view.senior) view.title = this.view.title + view.stylePriority = this.view.stylePriority // view.data = this.data this.chart = view