diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-06-09 09:59:48 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-06-21 09:08:04 +0200 |
commit | 8b5ef98495597c11caba2ac1fea0416345ec2f0e (patch) | |
tree | 6fb6984461166a9330eb3035080945ffc066d6ad /apps | |
parent | 5fb7ea22be0814eb8e1e1e0f2df6032ef53983cc (diff) | |
download | nextcloud-server-8b5ef98495597c11caba2ac1fea0416345ec2f0e.tar.gz nextcloud-server-8b5ef98495597c11caba2ac1fea0416345ec2f0e.zip |
fix: delete action import
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/src/actions/deleteAction.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/src/actions/deleteAction.ts b/apps/files/src/actions/deleteAction.ts index a633e477b1f..e9c87af6391 100644 --- a/apps/files/src/actions/deleteAction.ts +++ b/apps/files/src/actions/deleteAction.ts @@ -25,9 +25,9 @@ import { translate as t } from '@nextcloud/l10n' import axios from '@nextcloud/axios' import TrashCan from '@mdi/svg/svg/trash-can.svg?raw' -import { registerFileAction, FileAction } from '../services/FileAction.ts' +import { registerFileAction, FileAction } from '../services/FileAction' import logger from '../logger.js' -import type { Navigation } from '../services/Navigation.ts' +import type { Navigation } from '../services/Navigation' registerFileAction(new FileAction({ id: 'delete', |