Use uuid prefix in task table

This commit is contained in:
Ken Hibino
2020-12-21 06:51:07 -08:00
parent ec34f52777
commit f419fd3c71
9 changed files with 28 additions and 26 deletions

View File

@@ -40,7 +40,7 @@ import TablePaginationActions, {
rowsPerPageOptions,
} from "./TablePaginationActions";
import TableActions from "./TableActions";
import { durationBefore } from "../timeutil";
import { durationBefore, uuidPrefix } from "../utils";
import { usePolling } from "../hooks";
import { RetryTaskExtended } from "../reducers/tasksReducer";
@@ -307,7 +307,7 @@ function Row(props: RowProps) {
</IconButton>
</TableCell>
<TableCell component="th" scope="row">
{task.id}
{uuidPrefix(task.id)}
</TableCell>
<TableCell>{task.type}</TableCell>
<TableCell>{durationBefore(task.next_process_at)}</TableCell>