Skip to content

Commit

Permalink
Merge pull request #1058 from nextcloud-libraries/fix/sort-icon
Browse files Browse the repository at this point in the history
fix: Swap sort icons
  • Loading branch information
susnux authored Oct 13, 2023
2 parents c76c4e6 + 69acecc commit 3400b9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/components/FilePicker/FileList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -276,7 +276,7 @@ const fileContainer = ref<HTMLDivElement>()
}
th :deep(.button-vue__wrapper) {
color: var(--color-text-maxcontrast);
.button-vue__text {
font-weight: normal;
}
Expand Down

0 comments on commit 3400b9a

Please sign in to comment.