From 8633f13e0af8c803cd419af2a611c41708e9c7c1 Mon Sep 17 00:00:00 2001 From: John Molakvoæ Date: Thu, 23 Mar 2023 07:38:34 +0100 Subject: chore(eslint): fix missing import extensions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- apps/files_sharing/src/additionalScripts.js | 4 ++-- apps/files_sharing/src/collaborationresources.js | 6 +++--- .../src/components/ExternalShareAction.vue | 2 +- .../src/components/PersonalSettings.vue | 2 +- .../src/components/SharePermissionsEditor.vue | 14 ++++++------- apps/files_sharing/src/components/SharingEntry.vue | 12 +++++------ .../src/components/SharingEntryInherited.vue | 14 ++++++------- .../src/components/SharingEntryInternal.vue | 4 ++-- .../src/components/SharingEntryLink.vue | 18 ++++++++-------- .../src/components/SharingEntrySimple.vue | 2 +- apps/files_sharing/src/components/SharingInput.vue | 10 ++++----- apps/files_sharing/src/files_sharing.js | 4 ++-- .../src/lib/SharePermissionsToolBox.spec.js | 2 +- apps/files_sharing/src/mixins/ShareRequests.js | 2 +- apps/files_sharing/src/personal-settings.js | 2 +- apps/files_sharing/src/utils/GeneratePassword.js | 2 +- apps/files_sharing/src/views/SharingInherited.vue | 8 ++++---- apps/files_sharing/src/views/SharingLinkList.vue | 6 +++--- apps/files_sharing/src/views/SharingList.vue | 6 +++--- apps/files_sharing/src/views/SharingTab.vue | 24 +++++++++++----------- 20 files changed, 72 insertions(+), 72 deletions(-) (limited to 'apps/files_sharing/src') diff --git a/apps/files_sharing/src/additionalScripts.js b/apps/files_sharing/src/additionalScripts.js index 6cc039a876a..2ed4d86b64d 100644 --- a/apps/files_sharing/src/additionalScripts.js +++ b/apps/files_sharing/src/additionalScripts.js @@ -22,8 +22,8 @@ * */ -import './share' -import './sharebreadcrumbview' +import './share.js' +import './sharebreadcrumbview.js' import './style/sharebreadcrumb.scss' import './collaborationresourceshandler.js' diff --git a/apps/files_sharing/src/collaborationresources.js b/apps/files_sharing/src/collaborationresources.js index 1e6eda02a93..0175993a2f1 100644 --- a/apps/files_sharing/src/collaborationresources.js +++ b/apps/files_sharing/src/collaborationresources.js @@ -23,11 +23,11 @@ import Vue from 'vue' import Vuex from 'vuex' -import NcPopoverMenu from '@nextcloud/vue/dist/Components/NcPopoverMenu' -import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip' +import NcPopoverMenu from '@nextcloud/vue/dist/Components/NcPopoverMenu.js' +import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip.js' import ClickOutside from 'vue-click-outside' -import View from './views/CollaborationView' +import View from './views/CollaborationView.vue' Vue.prototype.t = t Tooltip.options.defaultHtml = false diff --git a/apps/files_sharing/src/components/ExternalShareAction.vue b/apps/files_sharing/src/components/ExternalShareAction.vue index 39caa1260c8..02b9eadd6e9 100644 --- a/apps/files_sharing/src/components/ExternalShareAction.vue +++ b/apps/files_sharing/src/components/ExternalShareAction.vue @@ -29,7 +29,7 @@