diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-02-18 18:28:51 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-02-20 02:28:13 +0100 |
commit | b06f5ba4c47450f355a8903c1a93ac68e8c6cfc2 (patch) | |
tree | a23a02f38db01f41e291ad331c76d6d69f7b630c /apps/files_trashbin/src | |
parent | a7d50df79b578506922cdf334bafe7d9045540c7 (diff) | |
download | nextcloud-server-b06f5ba4c47450f355a8903c1a93ac68e8c6cfc2.tar.gz nextcloud-server-b06f5ba4c47450f355a8903c1a93ac68e8c6cfc2.zip |
refactor: Migrate nextcloud-vue usage to new import schema
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files_trashbin/src')
-rw-r--r-- | apps/files_trashbin/src/columns.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/src/columns.ts b/apps/files_trashbin/src/columns.ts index d7c453f63e2..dab1ef57a64 100644 --- a/apps/files_trashbin/src/columns.ts +++ b/apps/files_trashbin/src/columns.ts @@ -10,7 +10,7 @@ import { dirname } from '@nextcloud/paths' import { translate as t } from '@nextcloud/l10n' import Vue from 'vue' -import NcUserBubble from '@nextcloud/vue/dist/Components/NcUserBubble.js' +import NcUserBubble from '@nextcloud/vue/components/NcUserBubble' const parseOriginalLocation = (node: Node): string => { const path = node.attributes?.['trashbin-original-location'] !== undefined ? String(node.attributes?.['trashbin-original-location']) : null |