From 4fefe71d29ef2baa2a2aed65275c4dafdae164eb Mon Sep 17 00:00:00 2001 From: amhsirak Date: Mon, 18 Nov 2024 05:50:25 +0530 Subject: [PATCH] feat: include robotId and robotMetaId in run data interface --- src/components/molecules/RunsTable.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/molecules/RunsTable.tsx b/src/components/molecules/RunsTable.tsx index 5091c6da..3fde41a3 100644 --- a/src/components/molecules/RunsTable.tsx +++ b/src/components/molecules/RunsTable.tsx @@ -45,6 +45,8 @@ export interface Data { // task: string; log: string; runId: string; + robotId: string; + robotMetaId: string; interpreterSettings: RunSettings; serializableOutput: any; binaryOutput: any;