File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export default {
6262 run,
6363 tag: tags[run][tag]
6464 };
65-  });
65+  }).filter(item => item.tag !== undefined) ;
6666 return {
6767 tagList,
6868 tag,
Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ export default {
129129 this.data.set('downloadType', runsItems[0].value);
130130 },
131131
132+  // Create a Scalar Chart, initialize it with default settings, then load datas
132133 initChart(tagInfo) {
133134 this.createChart();
134135 this.setChartsOptions(tagInfo);
@@ -141,6 +142,7 @@ export default {
141142 },
142143
143144 setChartsOptions({tagList, tag}) {
145+  // Create two lines, one line is original, the other line is for smoothing
144146 let seriesOption = tagList.map(item => [
145147 {
146148 name: item.run,
                         You can’t perform that action at this time. 
           
                  
0 commit comments