Skip to content

Commit 2450fda

Browse files
authored
fix: change search view mode icons (#574)
1 parent 0d06026 commit 2450fda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/ViewModeToggle.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const viewMode = defineModel<ViewMode>({ default: 'cards' })
1818
:aria-label="$t('filters.view_mode.cards')"
1919
@click="viewMode = 'cards'"
2020
>
21-
<span class="i-carbon-grid w-4 h-4" aria-hidden="true" />
21+
<span class="i-carbon-horizontal-view w-4 h-4" aria-hidden="true" />
2222
<span class="sr-only">{{ $t('filters.view_mode.cards') }}</span>
2323
</button>
2424
<button
@@ -29,7 +29,7 @@ const viewMode = defineModel<ViewMode>({ default: 'cards' })
2929
:aria-label="$t('filters.view_mode.table')"
3030
@click="viewMode = 'table'"
3131
>
32-
<span class="i-carbon-list w-4 h-4" aria-hidden="true" />
32+
<span class="i-carbon-table-split w-4 h-4" aria-hidden="true" />
3333
<span class="sr-only">{{ $t('filters.view_mode.table') }}</span>
3434
</button>
3535
</div>

0 commit comments

Comments
 (0)