summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/lib')
-rw-r--r--frontend/src/lib/components/Card.svelte8
1 files changed, 1 insertions, 7 deletions
diff --git a/frontend/src/lib/components/Card.svelte b/frontend/src/lib/components/Card.svelte
index 21181dc..45e1662 100644
--- a/frontend/src/lib/components/Card.svelte
+++ b/frontend/src/lib/components/Card.svelte
@@ -31,7 +31,6 @@
details: CardDetails;
compact?: boolean;
coverOnly?: boolean;
- ellipsis?: boolean;
overlay?: Snippet;
children?: Snippet;
onclick?: (event: MouseEvent) => void;
@@ -42,7 +41,6 @@
details,
compact = false,
coverOnly = false,
- ellipsis = true,
overlay,
children,
onclick
@@ -70,11 +68,7 @@
{#if !coverOnly}
<article class="flex h-full flex-col gap-2 p-2">
<header>
- <h2
- class:ellipsis-nowrap={ellipsis}
- class="self-center text-sm font-medium [grid-area:title]"
- title={details.title}
- >
+ <h2 class="self-center text-sm font-medium [grid-area:title]" title={details.title}>
{details.title}
</h2>
{#if details.subtitle}