Show started time in ActiveTasksTable

This commit is contained in:
Ken Hibino
2021-01-23 12:06:50 -08:00
parent 1eafcbeed5
commit c08addc7b3
4 changed files with 61 additions and 19 deletions

View File

@@ -243,6 +243,7 @@ interface BaseTask {
export interface ActiveTask extends BaseTask {
id: string;
queue: string;
start_time: string;
}
export interface PendingTask extends BaseTask {