File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
dashboard/src/components/jobs Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ export default class JobResults extends Vue {
150
150
this .system ,
151
151
result .definition .schema_path
152
152
);
153
- const label = ` ${systemComponent .name } ${result .definition .type } ` ;
153
+ const label = ` ${systemComponent .name } ${result .definition .type } (${ result . definition . schema_path }) ` ;
154
154
// @ts-expect-error
155
155
labelled [result .object_id ] = label ;
156
156
});
Original file line number Diff line number Diff line change @@ -90,7 +90,11 @@ export default class TimeseriesPlot extends Vue {
90
90
}
91
91
@Watch (" timeseriesData" )
92
92
changeData() {
93
+ const originalCol = this .column ;
93
94
this .column = this .availableFields [0 ];
95
+ if (this .column == originalCol ) {
96
+ this .redraw ();
97
+ }
94
98
}
95
99
downloadData(contentType : string ) {
96
100
this .$emit (" download-timeseries" , contentType );
You can’t perform that action at this time.
0 commit comments