Skip to content

Commit 08f50dc

Browse files
committed
fix(files_sharing): Hide internal recommendations in external share input
Signed-off-by: nfebe <fenn25.fn@gmail.com>
1 parent 6c231b6 commit 08f50dc

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

apps/files_sharing/src/components/SharingInput.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,10 @@ export default {
149149
},
150150
151151
mounted() {
152-
this.getRecommendations()
152+
if (!this.isExternal) {
153+
// We can only recommend users, groups etc for internal shares
154+
this.getRecommendations()
155+
}
153156
},
154157
155158
methods: {

0 commit comments

Comments
 (0)