Skip to content

Commit 15dd906

Browse files
committed
Fix upload icon being used for mod updates instead of download
1 parent 7365ef5 commit 15dd906

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/lib/components/modals/updates/UpdatesModal.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts">
2-
import { mdiUpload } from '@mdi/js';
2+
import { mdiDownload } from '@mdi/js';
33
import { getTranslate } from '@tolgee/svelte';
44
import { getContextClient, queryStore } from '@urql/svelte';
55
import { onMount } from 'svelte';
@@ -132,7 +132,7 @@
132132
<button class="btn p-2 col-span-8 text-left space-x-2" on:click={() => toggleSelected(update)}>
133133
<div class="h-full w-6">
134134
{#if $selectedUpdates.includes(update)}
135-
<SvgIcon class="h-full w-full" icon={mdiUpload} />
135+
<SvgIcon class="h-full w-8 mx-auto" icon={mdiDownload} />
136136
{/if}
137137
</div>
138138
<div class="h-full flex-auto flex flex-col content-center">

0 commit comments

Comments
 (0)