From 3c4cd5b87ef7e47af6115856cd3b31df811b7c46 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 (cherry picked from commit 69aceccaa3d24a93f9bb0b408a58c791d194d036) --- lib/components/FilePicker/FileList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/components/FilePicker/FileList.vue b/lib/components/FilePicker/FileList.vue index 06270275..9f540ba9 100644 --- a/lib/components/FilePicker/FileList.vue +++ b/lib/components/FilePicker/FileList.vue @@ -80,8 +80,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'