We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7365ef5 commit 15dd906Copy full SHA for 15dd906
1 file changed
frontend/src/lib/components/modals/updates/UpdatesModal.svelte
@@ -1,5 +1,5 @@
1
<script lang="ts">
2
- import { mdiUpload } from '@mdi/js';
+ import { mdiDownload } from '@mdi/js';
3
import { getTranslate } from '@tolgee/svelte';
4
import { getContextClient, queryStore } from '@urql/svelte';
5
import { onMount } from 'svelte';
@@ -132,7 +132,7 @@
132
<button class="btn p-2 col-span-8 text-left space-x-2" on:click={() => toggleSelected(update)}>
133
<div class="h-full w-6">
134
{#if $selectedUpdates.includes(update)}
135
- <SvgIcon class="h-full w-full" icon={mdiUpload} />
+ <SvgIcon class="h-full w-8 mx-auto" icon={mdiDownload} />
136
{/if}
137
</div>
138
<div class="h-full flex-auto flex flex-col content-center">
0 commit comments