Skip to content

Commit 10259ae

Browse files
committed
normalized icon names
1 parent 6582f77 commit 10259ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Exceptionless.Web/ClientApp/src/lib/features/events/components/ExtendedDataItem.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import ObjectDump from '$comp/ObjectDump.svelte';
44
import { Code, H4 } from '$comp/typography';
55
import { Button } from '$comp/ui/button';
6-
import ArrowDownIcon from '~icons/mdi/arrow-down';
7-
import ArrowUpIcon from '~icons/mdi/arrow-up';
6+
import IconArrowDown from '~icons/mdi/arrow-down';
7+
import IconArrowUp from '~icons/mdi/arrow-up';
88
99
interface Props {
1010
canPromote?: boolean;
@@ -70,11 +70,11 @@
7070
{#if canPromote}
7171
{#if !isPromoted}
7272
<Button onclick={async () => await promote(title)} size="icon" title="Promote to Tab"
73-
><ArrowUpIcon /><span class="sr-only">Promote to Tab</span></Button
73+
><IconArrowUp /><span class="sr-only">Promote to Tab</span></Button
7474
>
7575
{:else}
7676
<Button onclick={async () => await demote(title)} size="icon" title="Demote Tab"
77-
><ArrowDownIcon /><span class="sr-only">Demote Tab</span></Button
77+
><IconArrowDown /><span class="sr-only">Demote Tab</span></Button
7878
>
7979
{/if}
8080
{/if}

0 commit comments

Comments
 (0)