We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3329dc8 commit 18fff2eCopy full SHA for 18fff2e
web/src/routes/LoadDiffDialog.svelte
@@ -356,10 +356,10 @@
356
</Button.Root>
357
</div>
358
<ul class="m-2 max-h-96 overflow-y-auto rounded-md border">
359
- {#each dirBlacklist as entry (entry)}
360
- <li class="flex">
361
- <span class="grow border-b px-2 py-1">{entry}</span>
362
- <div class="border-b p-1 ps-0">
+ {#each dirBlacklist as entry, index (entry)}
+ <li class="flex" class:border-b={index !== dirBlacklist.size - 1}>
+ <span class="grow px-2 py-1">{entry}</span>
+ <div class="p-1 ps-0">
363
<Button.Root
364
title="Delete blacklist entry"
365
class="flex rounded-md btn-danger p-1"
0 commit comments