Skip to content

Commit d256206

Browse files
committed
Fix typo in move or copy dialog
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 parent f7bead0 commit d256206

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/files/src/actions/moveOrCopyAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export const handleCopyMoveNodeTo = async (node: Node, destination: Folder, meth
145145
*/
146146
const openFilePickerForAction = async (action: MoveCopyAction, dir = '/', nodes: Node[]): Promise<MoveCopyResult> => {
147147
const fileIDs = nodes.map(node => node.fileid).filter(Boolean)
148-
const filePicker = getFilePickerBuilder(t('files', 'Chose destination'))
148+
const filePicker = getFilePickerBuilder(t('files', 'Choose destination'))
149149
.allowDirectories(true)
150150
.setFilter((n: Node) => {
151151
// We only want to show folders that we can create nodes in

0 commit comments

Comments
 (0)