diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-11-23 21:22:45 +0100 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2023-11-24 00:49:31 +0100 |
commit | de61d2a79108dff69bf5a37214364c88b768fa87 (patch) | |
tree | f3adbd4fe6904654839849b63754920fc4d941f9 /apps | |
parent | a9c627cd9140ebad550fd3885e46c438019d6d5f (diff) | |
download | nextcloud-server-de61d2a79108dff69bf5a37214364c88b768fa87.tar.gz nextcloud-server-de61d2a79108dff69bf5a37214364c88b768fa87.zip |
fix(files): Use SVG as FilePicker icons instead of Vue components
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/src/actions/moveOrCopyAction.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/src/actions/moveOrCopyAction.ts b/apps/files/src/actions/moveOrCopyAction.ts index 07ffcfc052f..17e9370e8d9 100644 --- a/apps/files/src/actions/moveOrCopyAction.ts +++ b/apps/files/src/actions/moveOrCopyAction.ts @@ -35,9 +35,8 @@ import { translate as t } from '@nextcloud/l10n' import axios from '@nextcloud/axios' import Vue from 'vue' -import CopyIcon from 'vue-material-design-icons/FileMultiple.vue' +import CopyIconSvg from '@mdi/svg/svg/folder-multiple.svg?raw' import FolderMoveSvg from '@mdi/svg/svg/folder-move.svg?raw' -import MoveIcon from 'vue-material-design-icons/FolderMove.vue' import { MoveCopyAction, canCopy, canMove, getQueue } from './moveOrCopyActionUtils' import logger from '../logger' @@ -170,7 +169,7 @@ const openFilePickerForAction = async (action: MoveCopyAction, dir = '/', node: buttons.push({ label: target ? t('files', 'Copy to {target}', { target }) : t('files', 'Copy'), type: 'primary', - icon: CopyIcon, + icon: CopyIconSvg, async callback(destination: Node[]) { try { await handleCopyMoveNodeTo(node, destination[0], MoveCopyAction.COPY) @@ -186,12 +185,13 @@ const openFilePickerForAction = async (action: MoveCopyAction, dir = '/', node: buttons.push({ label: target ? t('files', 'Move to {target}', { target }) : t('files', 'Move'), type: action === MoveCopyAction.MOVE ? 'primary' : 'secondary', - icon: MoveIcon, + icon: FolderMoveSvg, async callback(destination: Node[]) { try { await handleCopyMoveNodeTo(node, destination[0], MoveCopyAction.MOVE) resolve(true) } catch (error) { + console.warn('got error', error) reject(error) } }, |