aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornfebe <fenn25.fn@gmail.com>2025-02-05 18:52:33 +0100
committernfebe <fenn25.fn@gmail.com>2025-02-06 14:11:50 +0100
commit08f50dceadaa09a3ceef5906a7338edfca99be72 (patch)
treee83bccc2c66c1fdd71f1b8fb7c32c61e9ae44f78
parent6c231b6e09e8feef9ce8f0de367e4cec4748bb80 (diff)
downloadnextcloud-server-08f50dceadaa09a3ceef5906a7338edfca99be72.tar.gz
nextcloud-server-08f50dceadaa09a3ceef5906a7338edfca99be72.zip
fix(files_sharing): Hide internal recommendations in external share input
Signed-off-by: nfebe <fenn25.fn@gmail.com>
-rw-r--r--apps/files_sharing/src/components/SharingInput.vue5
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: {