From 117e235adf2c9ce8062f66fd6032eee2eafd9e37 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 [skip ci] --- 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 f7a2d5cda431f..c0b780a28f7cb 100644 --- a/apps/files_sharing/src/components/SharingInput.vue +++ b/apps/files_sharing/src/components/SharingInput.vue @@ -151,7 +151,10 @@ export default { }, mounted() { - this.getRecommendations() + if (!this.isExternal) { + // We can only recommend users, groups etc for internal shares + this.getRecommendations() + } }, methods: {