Skip to content

Commit 8efc935

Browse files
committed
fix: update uniqueKey property in ExecutionLogs component to an empty string for improved functionality
1 parent 0148bef commit 8efc935

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ui/src/components/ExecutionLogs/index.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,14 @@ const ExecutionLogs = ({ projectId }: { projectId: string }) => {
2626
const [filterValue, setFilterValue] = useState<string>('all');
2727

2828
const selectedOrganisation = useSelector(
29+
30+
2931
(state: RootState) => state?.authentication?.selectedOrganisation
3032
);
3133

34+
35+
36+
3237
const testStacks = useSelector(
3338
(state: RootState) => state?.migration?.newMigrationData?.testStacks
3439
);
@@ -281,7 +286,7 @@ const ExecutionLogs = ({ projectId }: { projectId: string }) => {
281286
itemSize={60}
282287
columns={columns}
283288
data={data ?? []}
284-
uniqueKey={'timestamp'}
289+
uniqueKey={''}
285290
fetchTableData={fetchData}
286291
totalCounts={totalCounts ?? 0}
287292
loading={loading}

0 commit comments

Comments
 (0)