Skip to content

Commit f9fca21

Browse files
authored
fix(ui): use correct icon name for table header sort icon (#1551)
1 parent 250fcf1 commit f9fca21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/Package/Table.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ function getColumnLabel(id: ColumnId): string {
193193
<template v-if="isSortable('downloads')">
194194
<span
195195
v-if="isColumnSorted('downloads')"
196-
class="i-lucide:caret-down w-3 h-3"
196+
class="i-lucide:chevron-down w-3 h-3"
197197
:class="getSortDirection('downloads') === 'asc' ? 'rotate-180' : ''"
198198
aria-hidden="true"
199199
/>
@@ -231,7 +231,7 @@ function getColumnLabel(id: ColumnId): string {
231231
<template v-if="isSortable('updated')">
232232
<span
233233
v-if="isColumnSorted('updated')"
234-
class="i-lucide:caret-down w-3 h-3"
234+
class="i-lucide:chevron-down w-3 h-3"
235235
:class="getSortDirection('updated') === 'asc' ? 'rotate-180' : ''"
236236
aria-hidden="true"
237237
/>

0 commit comments

Comments
 (0)