Skip to content

Commit

Permalink
JobList: Remove Tooltips again because of some styling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianFP committed Oct 29, 2024
1 parent 2e746bc commit 69f053a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/routes/JobList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import {
TableHead,
TableHeadCell,
TableSearch,
Tooltip,
} from "flowbite-svelte";
import type { LinkType } from "flowbite-svelte";
import {
Expand Down Expand Up @@ -624,11 +623,9 @@ $: {
<Button pill outline class="!p-2" size="xs" color="alternative" on:click={() => openAbortModal(selectedItems)} disabled={selectedAbortButtonDisabled}>
<StopSolid class="inline mr-1" color="red"/> {selectedItems.length}
</Button>
<Tooltip color="red">Abort selected jobs</Tooltip>
<Button pill outline class="!p-2" size="xs" color="alternative" on:click={() => openDeleteModal(selectedItems)} disabled={selectedDeleteButtonDisabled}>
<TrashBinSolid class="inline mr-1" color="red"/> {selectedItems.length}
</Button>
<Tooltip color="red">Delete selected jobs</Tooltip>
<Button pill outline class="!p-2" size="xs" color="alternative" on:click={() => tableEditMode = false}>
<CloseOutline/>
</Button>
Expand Down Expand Up @@ -683,13 +680,11 @@ $: {

<StopSolid color="red"/>
</Button>
<Tooltip color="red">Abort this job</Tooltip>
{:else if (["success", "downloaded", "failed"].includes(item.status.step))}
<Button pill outline class="!p-2" size="xs" color="alternative" on:click={(e) => {e.stopPropagation(); openDeleteModal([item.ID]);}}>

<TrashBinSolid color="red"/>
</Button>
<Tooltip color="red">Delete this job</Tooltip>
{/if}
{#if (["success", "downloaded"].includes(item.status.step))}
<Button pill outline class="!p-2" size="xs" color="alternative" on:click={(e) => {e.stopPropagation(); downloadTranscript(item);}} disabled={jobDownloading[item.ID]}>
Expand All @@ -699,7 +694,6 @@ $: {
<DownloadSolid/>
{/if}
</Button>
<Tooltip color="green">Download finished transcript</Tooltip>
{/if}
</ButtonGroup>
</TableBodyCell>
Expand Down

0 comments on commit 69f053a

Please sign in to comment.