mirror of
https://github.com/nextcloud/server.git
synced 2026-02-23 18:05:02 -05: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
6c231b6e09
commit
08f50dcead
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