From 69aceccaa3d24a93f9bb0b408a58c791d194d036 Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Thu, 12 Oct 2023 15:20:02 -0700 Subject: [PATCH] fix: Swap sort icons Signed-off-by: Christopher Ng --- lib/components/FilePicker/FileList.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/components/FilePicker/FileList.vue b/lib/components/FilePicker/FileList.vue index 085cc1a2..84fcc9f9 100644 --- a/lib/components/FilePicker/FileList.vue +++ b/lib/components/FilePicker/FileList.vue @@ -81,8 +81,8 @@ import { join } from 'path' import { t } from '../../utils/l10n' import { computed, nextTick, onMounted, onUnmounted, ref, type Ref } from 'vue' -import IconSortAscending from 'vue-material-design-icons/MenuDown.vue' -import IconSortDescending from 'vue-material-design-icons/MenuUp.vue' +import IconSortAscending from 'vue-material-design-icons/MenuUp.vue' +import IconSortDescending from 'vue-material-design-icons/MenuDown.vue' import LoadingTableRow from './LoadingTableRow.vue' import FileListRow from './FileListRow.vue' @@ -276,7 +276,7 @@ const fileContainer = ref() } th :deep(.button-vue__wrapper) { color: var(--color-text-maxcontrast); - + .button-vue__text { font-weight: normal; }