mirror of
https://github.com/nextcloud/server.git
synced 2026-03-25 03:43:45 -04:00
fix(files_sharing): Hide internal recommendations in external share input
Signed-off-by: nfebe <fenn25.fn@gmail.com>
This commit is contained in:
parent
3d090d2904
commit
af72b957b2
1 changed files with 4 additions and 1 deletions
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue