Skip to content

Commit

Permalink
Connections filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Sep 5, 2024
1 parent d02d874 commit bfad5e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platforms/interface/ui/pages/connections.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
</div>

<div class="mt-5 flex w-full flex-col gap-5">
{#each $settings.connectionCodes as item}
{#each $settings.connectionCodes.filter((item) => item.code !== $settings.connectionCode) as item, i}
<div class="flex w-full flex-row flex-wrap items-center justify-between gap-3">
<div class="flex flex-row flex-wrap gap-3">
<div>
Expand Down

0 comments on commit bfad5e5

Please sign in to comment.