diff --git a/web/app/src/components/JobsTable.vue b/web/app/src/components/JobsTable.vue index 5cb4a643..2c66562c 100644 --- a/web/app/src/components/JobsTable.vue +++ b/web/app/src/components/JobsTable.vue @@ -74,6 +74,8 @@ export default { }); }, onJobsFetched(data) { + // "Down-cast" to JobUpdate to only get those fields, just for debugging things. + // data.jobs = data.jobs.map((j) => API.JobUpdate.constructFromObject(j)); this.tabulator.setData(data.jobs); this.restoreRowSelection(); },