File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/Exceptionless.Web/ClientApp/src/lib/components/events/views Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
<script lang =" ts" >
2
2
import IconEmail from ' ~icons/mdi/email' ;
3
3
import IconOpenInNew from ' ~icons/mdi/open-in-new' ;
4
+ import IconSearch from ' ~icons/mdi/search' ;
4
5
import type { PersistentEvent } from ' $lib/models/api' ;
5
6
import * as Table from ' $comp/ui/table' ;
6
7
import Duration from ' $comp/formatters/Duration.svelte' ;
164
165
<Table .Head class =" whitespace-nowrap" >Tags</Table .Head >
165
166
<Table .Cell class =" flex flex-wrap items-center justify-start gap-2 overflow-auto" >
166
167
{#each event .tags as tag (tag )}
167
- <ClickableStringFilter term ="tag" value ={tag } class ="ml-0" ><Badge color ="dark" >{tag }</Badge ></ClickableStringFilter >
168
+ <ClickableStringFilter term ="tag" value ={tag } class =" ml-0" >
169
+ <Badge color ="dark" >{tag }<IconSearch class =" ml-2" /></Badge >
170
+ </ClickableStringFilter >
168
171
{/each }
169
172
</Table .Cell >
170
173
</Table .Row >
You can’t perform that action at this time.
0 commit comments