File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
ui/src/components/ExecutionLogs Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments