fix(files_sharing): Hide internal recommendations in external share input

Signed-off-by: nfebe <fenn25.fn@gmail.com>
This commit is contained in:
nfebe 2025-02-05 18:52:33 +01:00
parent 6c231b6e09
commit 08f50dcead

View file

@ -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: {