diff --git a/ui/src/components/ActiveTasksTable.tsx b/ui/src/components/ActiveTasksTable.tsx index 3a77759..b5689c0 100644 --- a/ui/src/components/ActiveTasksTable.tsx +++ b/ui/src/components/ActiveTasksTable.tsx @@ -191,14 +191,16 @@ function ActiveTasksTable(props: Props & ReduxProps) { padding="checkbox" classes={{ stickyHeader: classes.stickyHeaderCell }} > - 0 && numSelected < rowCount} - checked={rowCount > 0 && numSelected === rowCount} - onChange={handleSelectAllClick} - inputProps={{ - "aria-label": "select all tasks shown in the table", - }} - /> + + 0 && numSelected < rowCount} + checked={rowCount > 0 && numSelected === rowCount} + onChange={handleSelectAllClick} + inputProps={{ + "aria-label": "select all tasks shown in the table", + }} + /> + {columns.map((col) => ( history.push(taskDetailsPath(task.queue, task.id))} > e.stopPropagation()}> - ) => - props.onSelectChange(event.target.checked) - } - checked={props.isSelected} - /> + + ) => + props.onSelectChange(event.target.checked) + } + checked={props.isSelected} + /> + {uuidPrefix(task.id)} diff --git a/ui/src/components/ArchivedTasksTable.tsx b/ui/src/components/ArchivedTasksTable.tsx index e39b414..68cc09e 100644 --- a/ui/src/components/ArchivedTasksTable.tsx +++ b/ui/src/components/ArchivedTasksTable.tsx @@ -218,14 +218,16 @@ function ArchivedTasksTable(props: Props & ReduxProps) { padding="checkbox" classes={{ stickyHeader: classes.stickyHeaderCell }} > - 0 && numSelected < rowCount} - checked={rowCount > 0 && numSelected === rowCount} - onChange={handleSelectAllClick} - inputProps={{ - "aria-label": "select all tasks shown in the table", - }} - /> + + 0 && numSelected < rowCount} + checked={rowCount > 0 && numSelected === rowCount} + onChange={handleSelectAllClick} + inputProps={{ + "aria-label": "select all tasks shown in the table", + }} + /> + {columns.map((col) => ( history.push(taskDetailsPath(task.queue, task.id))} > e.stopPropagation()}> - ) => - props.onSelectChange(event.target.checked) - } - checked={props.isSelected} - /> + + ) => + props.onSelectChange(event.target.checked) + } + checked={props.isSelected} + /> + {uuidPrefix(task.id)} diff --git a/ui/src/components/PendingTasksTable.tsx b/ui/src/components/PendingTasksTable.tsx index d16decd..990a8da 100644 --- a/ui/src/components/PendingTasksTable.tsx +++ b/ui/src/components/PendingTasksTable.tsx @@ -218,14 +218,16 @@ function PendingTasksTable(props: Props & ReduxProps) { padding="checkbox" classes={{ stickyHeader: classes.stickyHeaderCell }} > - 0 && numSelected < rowCount} - checked={rowCount > 0 && numSelected === rowCount} - onChange={handleSelectAllClick} - inputProps={{ - "aria-label": "select all tasks shown in the table", - }} - /> + + 0 && numSelected < rowCount} + checked={rowCount > 0 && numSelected === rowCount} + onChange={handleSelectAllClick} + inputProps={{ + "aria-label": "select all tasks shown in the table", + }} + /> + {columns.map((col) => ( history.push(taskDetailsPath(task.queue, task.id))} > e.stopPropagation()}> - ) => - props.onSelectChange(event.target.checked) - } - checked={props.isSelected} - /> + + ) => + props.onSelectChange(event.target.checked) + } + checked={props.isSelected} + /> + {uuidPrefix(task.id)} diff --git a/ui/src/components/RetryTasksTable.tsx b/ui/src/components/RetryTasksTable.tsx index 1eed292..dd0939b 100644 --- a/ui/src/components/RetryTasksTable.tsx +++ b/ui/src/components/RetryTasksTable.tsx @@ -248,14 +248,16 @@ function RetryTasksTable(props: Props & ReduxProps) { padding="checkbox" classes={{ stickyHeader: classes.stickyHeaderCell }} > - 0 && numSelected < rowCount} - checked={rowCount > 0 && numSelected === rowCount} - onChange={handleSelectAllClick} - inputProps={{ - "aria-label": "select all tasks shown in the table", - }} - /> + + 0 && numSelected < rowCount} + checked={rowCount > 0 && numSelected === rowCount} + onChange={handleSelectAllClick} + inputProps={{ + "aria-label": "select all tasks shown in the table", + }} + /> + {columns.map((col) => ( history.push(taskDetailsPath(task.queue, task.id))} > e.stopPropagation()}> - ) => - props.onSelectChange(event.target.checked) - } - checked={props.isSelected} - /> + + ) => + props.onSelectChange(event.target.checked) + } + checked={props.isSelected} + /> + {uuidPrefix(task.id)} diff --git a/ui/src/components/ScheduledTasksTable.tsx b/ui/src/components/ScheduledTasksTable.tsx index a612f6d..204aed8 100644 --- a/ui/src/components/ScheduledTasksTable.tsx +++ b/ui/src/components/ScheduledTasksTable.tsx @@ -245,14 +245,16 @@ function ScheduledTasksTable(props: Props & ReduxProps) { padding="checkbox" classes={{ stickyHeader: classes.stickyHeaderCell }} > - 0 && numSelected < rowCount} - checked={rowCount > 0 && numSelected === rowCount} - onChange={handleSelectAllClick} - inputProps={{ - "aria-label": "select all tasks shown in the table", - }} - /> + + 0 && numSelected < rowCount} + checked={rowCount > 0 && numSelected === rowCount} + onChange={handleSelectAllClick} + inputProps={{ + "aria-label": "select all tasks shown in the table", + }} + /> + {columns.map((col) => ( history.push(taskDetailsPath(task.queue, task.id))} > e.stopPropagation()}> - ) => - props.onSelectChange(event.target.checked) - } - checked={props.isSelected} - /> + + ) => + props.onSelectChange(event.target.checked) + } + checked={props.isSelected} + /> + {uuidPrefix(task.id)}