diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-07-26 09:54:25 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2024-07-30 09:50:46 +0000 |
commit | 197c35598cc6b1b8142a45afa89d213f8338d3f3 (patch) | |
tree | b297e90eb0209c06e8a6f900144e4be95f00bb18 /apps/files_sharing/src/components/SharingInput.vue | |
parent | 850cb082a91d6e18e64fdbaafaa3be9ede59123f (diff) | |
download | nextcloud-server-197c35598cc6b1b8142a45afa89d213f8338d3f3.tar.gz nextcloud-server-197c35598cc6b1b8142a45afa89d213f8338d3f3.zip |
chore(files_sharing): refactor Share model to ts
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src/components/SharingInput.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingInput.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingInput.vue b/apps/files_sharing/src/components/SharingInput.vue index 05e7f6f0282..96efa88cca1 100644 --- a/apps/files_sharing/src/components/SharingInput.vue +++ b/apps/files_sharing/src/components/SharingInput.vue @@ -35,7 +35,7 @@ import debounce from 'debounce' import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js' import Config from '../services/ConfigService.ts' -import Share from '../models/Share.js' +import Share from '../models/Share.ts' import ShareRequests from '../mixins/ShareRequests.js' import ShareTypes from '../mixins/ShareTypes.js' import ShareDetails from '../mixins/ShareDetails.js' |