File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Exceptionless.Web/ClientApp/src/lib/features/events/components Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
import ObjectDump from ' $comp/ObjectDump.svelte' ;
4
4
import { Code , H4 } from ' $comp/typography' ;
5
5
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' ;
8
8
9
9
interface Props {
10
10
canPromote? : boolean ;
70
70
{#if canPromote }
71
71
{#if ! isPromoted }
72
72
<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
74
74
>
75
75
{:else }
76
76
<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
78
78
>
79
79
{/if }
80
80
{/if }
You can’t perform that action at this time.
0 commit comments