mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Fix typo in move or copy dialog
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
f7bead00d1
commit
d256206ffe
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue