diff options
author | Joas Schilling <coding@schilljs.com> | 2023-12-18 15:25:44 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-12-18 15:25:44 +0100 |
commit | d256206ffef2760a5ecc60f83bc689d2d9ce7b06 (patch) | |
tree | 3d7d224e69f76d0e6c015982b4360d2ce5843702 | |
parent | f7bead00d1635683fab38daff246e7ad7e862d27 (diff) | |
download | nextcloud-server-d256206ffef2760a5ecc60f83bc689d2d9ce7b06.tar.gz nextcloud-server-d256206ffef2760a5ecc60f83bc689d2d9ce7b06.zip |
Fix typo in move or copy dialog
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | apps/files/src/actions/moveOrCopyAction.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/actions/moveOrCopyAction.ts b/apps/files/src/actions/moveOrCopyAction.ts index 9a9f8ba805f..3d27df37226 100644 --- a/apps/files/src/actions/moveOrCopyAction.ts +++ b/apps/files/src/actions/moveOrCopyAction.ts @@ -145,7 +145,7 @@ export const handleCopyMoveNodeTo = async (node: Node, destination: Folder, meth */ const openFilePickerForAction = async (action: MoveCopyAction, dir = '/', nodes: Node[]): Promise<MoveCopyResult> => { const fileIDs = nodes.map(node => node.fileid).filter(Boolean) - const filePicker = getFilePickerBuilder(t('files', 'Chose destination')) + const filePicker = getFilePickerBuilder(t('files', 'Choose destination')) .allowDirectories(true) .setFilter((n: Node) => { // We only want to show folders that we can create nodes in |