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 {
150150 this .system ,
151151 result .definition .schema_path
152152 );
153- const label = ` ${systemComponent .name } ${result .definition .type } ` ;
153+ const label = ` ${systemComponent .name } ${result .definition .type } (${ result . definition . schema_path }) ` ;
154154 // @ts-expect-error
155155 labelled [result .object_id ] = label ;
156156 });
Original file line number Diff line number Diff line change @@ -90,7 +90,11 @@ export default class TimeseriesPlot extends Vue {
9090 }
9191 @Watch (" timeseriesData" )
9292 changeData() {
93+ const originalCol = this .column ;
9394 this .column = this .availableFields [0 ];
95+ if (this .column == originalCol ) {
96+ this .redraw ();
97+ }
9498 }
9599 downloadData(contentType : string ) {
96100 this .$emit (" download-timeseries" , contentType );
You can’t perform that action at this time.
0 commit comments