diff --git a/web/app/src/components/JobsTable.vue b/web/app/src/components/JobsTable.vue index a901ec32..c590a67a 100644 --- a/web/app/src/components/JobsTable.vue +++ b/web/app/src/components/JobsTable.vue @@ -45,6 +45,7 @@ export default { const options = { // See pkg/api/flamenco-manager.yaml, schemas Job and JobUpdate. columns: [ + // Useful for debugging when there are many similar jobs: // { title: "ID", field: "id", headerSort: false, formatter: (cell) => cell.getData().id.substr(0, 8), }, { title: 'Status', field: 'status', sorter: 'string', diff --git a/web/app/src/components/TasksTable.vue b/web/app/src/components/TasksTable.vue index eeadfea1..0831df6f 100644 --- a/web/app/src/components/TasksTable.vue +++ b/web/app/src/components/TasksTable.vue @@ -28,6 +28,7 @@ export default { const options = { // See pkg/api/flamenco-manager.yaml, schemas Task and TaskUpdate. columns: [ + // Useful for debugging when there are many similar tasks: // { title: "ID", field: "id", headerSort: false, formatter: (cell) => cell.getData().id.substr(0, 8), }, { title: 'Status', field: 'status', sorter: 'string',