From 99f7044bab8746d5c5c3b52c2d00ce41cef28a41 Mon Sep 17 00:00:00 2001 From: Jake Fulmine Date: Sun, 11 Jun 2023 11:08:00 +0200 Subject: [PATCH] fix(dashboard): fix broken styling in list --- dashboard/src/components/list/ListView.svelte | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dashboard/src/components/list/ListView.svelte b/dashboard/src/components/list/ListView.svelte index 9026b990..ece709ac 100644 --- a/dashboard/src/components/list/ListView.svelte +++ b/dashboard/src/components/list/ListView.svelte @@ -147,8 +147,8 @@ {:else if settings.accessibility.expandedcards} {#each currentList as item, index (pageOptions.randomized ? item.uuid + '-' + index : item.uuid)} - {copiedArray[indexStart + index] ? "Copied!" : "Copy public link"} - - + + {#if pageOptions.type === "member"} @@ -176,7 +176,7 @@