Fix: Heroicons v1 leftovers (#374)

Change the getOrderBy's button. 
Using Heroicons v2

Change the SortAscendingIcon to BarsArrowUpIcon
Change the SortDescendingIcon to BarsArrowDownIcon
This commit is contained in:
Leo
2025-06-12 06:48:01 +10:00
committed by GitHub
parent b962bc9227
commit e832c7661a

View File

@@ -391,8 +391,8 @@ onSearched = debounce(onSearched, 500)
</BaseDropdown>
<BaseButton class="ml-1" size="md" variant="gray" @click="sortData">
<BaseIcon v-if="getOrderBy" name="SortAscendingIcon" />
<BaseIcon v-else name="SortDescendingIcon" />
<BaseIcon v-if="getOrderBy" name="BarsArrowUpIcon" />
<BaseIcon v-else name="BarsArrowDownIcon" />
</BaseButton>
</div>
</div>