Skip to content

Commit

Permalink
fix(files_sharing): Hide internal recommendations in external share i…
Browse files Browse the repository at this point in the history
…nput

Signed-off-by: nfebe <fenn25.fn@gmail.com>
  • Loading branch information
nfebe committed Feb 5, 2025
1 parent 97444cd commit 02c58f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/files_sharing/src/components/SharingInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit 02c58f8

Please sign in to comment.