From: Joas Schilling Date: Mon, 18 Dec 2023 14:25:44 +0000 (+0100) Subject: Fix typo in move or copy dialog X-Git-Tag: v29.0.0beta1~624^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d256206ffef2760a5ecc60f83bc689d2d9ce7b06;p=nextcloud-server.git Fix typo in move or copy dialog Signed-off-by: Joas Schilling --- 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 => { 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