Skip to content

Commit 0c06070

Browse files
authored
Merge pull request eclipse-pullpiri#347 from LGSI-KarumuriHari/main
2 parents c7b8e9e + 2062f1c commit 0c06070

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/dashboard/src/components/Workloads.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -872,9 +872,9 @@ export function Workloads({ onPodClick, pods, setPods, recentEvents, setRecentEv
872872
</TableHeader>
873873
<TableBody className="overflow-visible">
874874
{filteredPods.map(
875-
(pod /*index*/) => ( // 2025-09-23 comment out
875+
(pod, idx) => (
876876
<TableRow
877-
key={pod.name}
877+
key={`${pod.name}-${pod.ip || idx}`}
878878
className="border-border/30 hover:bg-muted/30 transition-colors"
879879
>
880880
<TableCell className="font-medium text-foreground max-w-xs">

0 commit comments

Comments
 (0)