Skip to content

Commit c495ba3

Browse files
fix: use same grid/list view icons as files app
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 7ffc039 commit c495ba3

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/views/FilesList/FilesList.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
variant="tertiary"
5050
@click="toggleGridView">
5151
<template #icon>
52-
<NcIconSvgWrapper v-if="userConfigStore.files_list_grid_view" :path="mdiViewList" />
53-
<NcIconSvgWrapper v-else :path="mdiViewGrid" />
52+
<NcIconSvgWrapper v-if="userConfigStore.files_list_grid_view" :path="mdiFormatListBulletedSquare" />
53+
<NcIconSvgWrapper v-else :path="mdiViewGridOutline" />
5454
</template>
5555
</NcButton>
5656
</div>
@@ -96,9 +96,9 @@ import {
9696
mdiChevronDown,
9797
mdiChevronUp,
9898
mdiFolder,
99+
mdiFormatListBulletedSquare,
99100
mdiReload,
100-
mdiViewGrid,
101-
mdiViewList,
101+
mdiViewGridOutline,
102102
} from '@mdi/js'
103103
104104
import NcActionButton from '@nextcloud/vue/components/NcActionButton'
@@ -147,9 +147,9 @@ export default {
147147
mdiChevronDown,
148148
mdiChevronUp,
149149
mdiFolder,
150+
mdiFormatListBulletedSquare,
150151
mdiReload,
151-
mdiViewGrid,
152-
mdiViewList,
152+
mdiViewGridOutline,
153153
}
154154
},
155155
data() {

0 commit comments

Comments
 (0)