From d256206ffef2760a5ecc60f83bc689d2d9ce7b06 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 18 Dec 2023 15:25:44 +0100 Subject: [PATCH] Fix typo in move or copy dialog Signed-off-by: Joas Schilling --- apps/files/src/actions/moveOrCopyAction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5