File tree Expand file tree Collapse file tree 7 files changed +11
-6
lines changed
Expand file tree Collapse file tree 7 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,6 @@ export default {
8080 getPluginGraphsGraph ().then (({status, data}) => {
8181 if (+ status === 0 && data .url ) {
8282 this .graphUrl = data .url
83- console .log (" The url: " + this .graphUrl )
8483 this .addDragEventForImg ();
8584 }
8685 });
Original file line number Diff line number Diff line change 99 ></ui-chart-page >
1010 <ui-chart-page
1111 v-for =" item in groupedTags"
12+ :key =" item.group"
1213 :config =" config"
1314 :runsItems =" runsItems"
1415 :tagList =" item.tags"
Original file line number Diff line number Diff line change 44 <ui-expand-panel :info =" total" :title =" title" >
55 <div class =" visual-dl-chart-page-box" >
66 <ui-chart
7- v-for =" tag in filteredPageList"
8- :tagInfo =" tag"
7+ v-for =" tagInfo in filteredPageList"
8+ :key =" tagInfo.run + tagInfo.tag.displayName"
9+ :tagInfo =" tagInfo"
910 :runs =" config.runs"
1011 :chartType =" config.chartType"
1112 :running =" config.running"
Original file line number Diff line number Diff line change 88 ></v-text-field >
99
1010 <v-radio-group label =" Histogram mode" v-model =" config.chartType" dark >
11- <v-radio v-for =" mode in chartTypeItems"
11+ <v-radio v-for =" mode in chartTypeItems" :key = " mode.name "
1212 :label =" mode.name" :value =" mode.value" ></v-radio >
1313 </v-radio-group >
1414
Original file line number Diff line number Diff line change 44 <ui-image
55 class =" visual-dl-chart-image"
66 v-for =" tagInfo in filteredPageList"
7+ :key =" tagInfo.run + tagInfo.tag.displayName"
78 :tagInfo =" tagInfo"
89 :isActualImageSize =" config.isActualImageSize"
910 :runs =" config.runs"
Original file line number Diff line number Diff line change @@ -94,6 +94,8 @@ export default {
9494 this .setChartHorizon ();
9595 },
9696 tagInfo : function (val ) {
97+ // Should Clean up the chart before each use.
98+ this .myChart .clear ();
9799 this .setChartsOptions (val);
98100 this .getOriginChartData (val);
99101 }
Original file line number Diff line number Diff line change 33 <ui-expand-panel :info =" tagList.length" :title =" title" >
44 <div ref =" chartPageBox" class =" visual-dl-chart-page-box" >
55 <ui-chart
6- v-for =" tag in filteredTagList"
7- :tagInfo =" tag"
6+ v-for =" tagInfo in filteredTagList"
7+ :tagInfo =" tagInfo"
8+ :key =" tagInfo.run + tagInfo.tag.displayName"
89 :groupNameReg =" config.groupNameReg"
910 :smoothing =" config.smoothing"
1011 :horizontal =" config.horizontal"
You can’t perform that action at this time.
0 commit comments