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]>

[skip ci]
  • Loading branch information
nfebe authored and backportbot[bot] committed Feb 6, 2025
1 parent c9e545b commit 4d4c817
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 @@ -133,7 +133,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 4d4c817

Please sign in to comment.