Skip to content

Commit

Permalink
Fix upload icon being used for mod updates instead of download
Browse files Browse the repository at this point in the history
  • Loading branch information
mircearoata committed Oct 22, 2024
1 parent 7365ef5 commit 15dd906
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import { mdiUpload } from '@mdi/js';
import { mdiDownload } from '@mdi/js';
import { getTranslate } from '@tolgee/svelte';
import { getContextClient, queryStore } from '@urql/svelte';
import { onMount } from 'svelte';
Expand Down Expand Up @@ -132,7 +132,7 @@
<button class="btn p-2 col-span-8 text-left space-x-2" on:click={() => toggleSelected(update)}>
<div class="h-full w-6">
{#if $selectedUpdates.includes(update)}
<SvgIcon class="h-full w-full" icon={mdiUpload} />
<SvgIcon class="h-full w-8 mx-auto" icon={mdiDownload} />
{/if}
</div>
<div class="h-full flex-auto flex flex-col content-center">
Expand Down

0 comments on commit 15dd906

Please sign in to comment.