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 <[email protected]>
  • Loading branch information
nfebe committed Feb 6, 2025
1 parent 6c231b6 commit 08f50dc
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 08f50dc

Please sign in to comment.