From ce4c25f1e779344e9e9b112d54eaef1e8d0a3ff7 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 10 Oct 2024 23:49:56 +0530 Subject: [PATCH] feat: robot name --- 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 7f414c58..5e60fe9e 100644 --- a/src/components/molecules/RunsTable.tsx +++ b/src/components/molecules/RunsTable.tsx @@ -25,7 +25,7 @@ interface Column { export const columns: readonly Column[] = [ { id: 'status', label: 'Status', minWidth: 80 }, - { id: 'name', label: 'Name', minWidth: 80 }, + { id: 'name', label: 'Robot Name', minWidth: 80 }, { id: 'startedAt', label: 'Started at', minWidth: 80 }, { id: 'finishedAt', label: 'Finished at', minWidth: 80 }, { id: 'duration', label: 'Duration', minWidth: 80 },