From c83bef67d227c9d8de23e93d0325abe97f0d1063 Mon Sep 17 00:00:00 2001 From: nfebe Date: Wed, 5 Feb 2025 18:52:33 +0100 Subject: [PATCH] fix(files_sharing): Hide internal recommendations in external share input Signed-off-by: nfebe --- apps/files_sharing/src/components/SharingInput.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/src/components/SharingInput.vue b/apps/files_sharing/src/components/SharingInput.vue index 67fdceae336b3..689539f737a7e 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: {