FIX: Show "group members forbidden" message on mobile (#10370)

This commit fixes an oversight in commit 88359b0f16.
This commit is contained in:
Kane York 2020-08-04 16:16:52 -07:00 committed by GitHub
parent eb619c8e98
commit 8850f51fd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -55,9 +55,13 @@
{{/load-more}}
{{conditional-loading-spinner condition=loading}}
{{else}}
{{else if model.can_see_members}}
<br>
<div>{{i18n "groups.empty.members"}}</div>
{{else}}
<br>
<div>{{i18n "groups.members.forbidden"}}</div>
{{/if}}
</section>