diff options
author | nfebe <fenn25.fn@gmail.com> | 2025-02-05 18:52:33 +0100 |
---|---|---|
committer | nfebe <fenn25.fn@gmail.com> | 2025-02-06 12:15:38 +0100 |
commit | af72b957b2a56ec6af4e59b337901ba0ccced734 (patch) | |
tree | 7ea9b2f0cef81e7885eb019a5c4206dffd43d3a9 /apps | |
parent | 3d090d290466926e8f14cac8783c31b29ff9a48e (diff) | |
download | nextcloud-server-af72b957b2a56ec6af4e59b337901ba0ccced734.tar.gz nextcloud-server-af72b957b2a56ec6af4e59b337901ba0ccced734.zip |
fix(files_sharing): Hide internal recommendations in external share input
Signed-off-by: nfebe <fenn25.fn@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/src/components/SharingInput.vue | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingInput.vue b/apps/files_sharing/src/components/SharingInput.vue index 67fdceae336..689539f737a 100644 --- a/apps/files_sharing/src/components/SharingInput.vue +++ b/apps/files_sharing/src/components/SharingInput.vue @@ -149,7 +149,10 @@ export default { }, mounted() { - this.getRecommendations() + if (!this.isExternal) { + // We can only recommend users, groups etc for internal shares + this.getRecommendations() + } }, methods: { |