Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions web/src/lib/components/patches/PatchesTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,14 @@
<Table.Row>
<Table.Cell colspan={columns.length} class="p-0!">
{#if patches.length === 0}
<Empty size="sm" title="No patches" description={"No patches exist for Minecraft " + version + " yet."} />
<Empty
size="sm"
class="rounded-none border-0 bg-transparent"
title="No patches"
description={"No patches exist for Minecraft " + version + " yet."}
/>
{:else}
<Empty size="sm" title="No matching patches" description="Try adjusting the filters.">
<Empty size="sm" class="rounded-none border-0 bg-transparent" title="No matching patches" description="Try adjusting the filters.">
<Button size="sm" onclick={() => table.resetColumnFilters()}>
<X size={16} aria-hidden="true" />
Clear filters
Expand Down