diff options
Diffstat (limited to 'apps/files/src/actions/moveOrCopyAction.ts')
-rw-r--r-- | apps/files/src/actions/moveOrCopyAction.ts | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/apps/files/src/actions/moveOrCopyAction.ts b/apps/files/src/actions/moveOrCopyAction.ts index 724b65fa515..06e32c98090 100644 --- a/apps/files/src/actions/moveOrCopyAction.ts +++ b/apps/files/src/actions/moveOrCopyAction.ts @@ -16,8 +16,8 @@ import { openConflictPicker, hasConflict } from '@nextcloud/upload' import { basename, join } from 'path' import Vue from 'vue' -import CopyIconSvg from '@mdi/svg/svg/folder-multiple.svg?raw' -import FolderMoveSvg from '@mdi/svg/svg/folder-move.svg?raw' +import CopyIconSvg from '@mdi/svg/svg/folder-multiple-outline.svg?raw' +import FolderMoveSvg from '@mdi/svg/svg/folder-move-outline.svg?raw' import { MoveCopyAction, canCopy, canMove, getQueue } from './moveOrCopyActionUtils' import { getContents } from '../services/Files' @@ -158,7 +158,6 @@ export const handleCopyMoveNodeTo = async (node: Node, destination: Folder, meth } } catch (error) { // User cancelled - showError(t('files', 'Move cancelled')) return } } @@ -330,7 +329,6 @@ export const action = new FileAction({ return false } if (result === false) { - showInfo(t('files', 'Cancelled move or copy of "{filename}".', { filename: node.displayname })) return null } @@ -352,10 +350,6 @@ export const action = new FileAction({ const result = await openFilePickerForAction(action, dir, nodes) // Handle cancellation silently if (result === false) { - showInfo(nodes.length === 1 - ? t('files', 'Cancelled move or copy of "{filename}".', { filename: nodes[0].displayname }) - : t('files', 'Cancelled move or copy operation'), - ) return nodes.map(() => null) } |