From 0f0b341c2a0122bfc48bde0d8ec2813f99a5d6f7 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 10 Oct 2024 23:58:30 +0530 Subject: [PATCH] feat: run ID --- src/components/molecules/RunsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/RunsTable.tsx b/src/components/molecules/RunsTable.tsx index 4a67c85c..7f36659f 100644 --- a/src/components/molecules/RunsTable.tsx +++ b/src/components/molecules/RunsTable.tsx @@ -28,7 +28,7 @@ export const columns: readonly Column[] = [ { id: 'name', label: 'Robot Name', minWidth: 80 }, { id: 'startedAt', label: 'Started at', minWidth: 80 }, { id: 'finishedAt', label: 'Finished at', minWidth: 80 }, - { id: 'runId', label: 'Run id', minWidth: 80 }, + { id: 'runId', label: 'Run ID', minWidth: 80 }, // { id: 'task', label: 'Task', minWidth: 80 }, { id: 'delete', label: 'Delete', minWidth: 80 }, ];