Skip to content

Commit

Permalink
chore: fix ports duplication
Browse files Browse the repository at this point in the history
Signed-off-by: Vladyslav Zhukovskyi <vzhukovs@redhat.com>
  • Loading branch information
vzhukovs committed Nov 17, 2023
1 parent 11dc0e8 commit b0778dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/renderer/src/lib/pod/PodActions.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ onMount(async () => {
podContainers.forEach(container => {
const openingUrls = containerUtils.getOpeningUrls(container);
urls = urls.concat(openingUrls);
urls = [...new Set([...urls, ...openingUrls])];
});
});
Expand Down

0 comments on commit b0778dc

Please sign in to comment.