Fixed issue with GroupCreate showing error

• Fixed:
- issue with GroupCreate showing error
This commit is contained in:
mgabdev 2020-08-10 22:00:35 -05:00
parent abf6e9fe53
commit 5f3aef6b3b
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ class GroupCreate extends ImmutablePureComponent {
if (!group && groupId) {
return <ColumnIndicator type='loading' />
} else if ((!group && error) || !isAdmin) {
} else if ((!group && error) || (groupId && !isAdmin)) {
return <ColumnIndicator type='missing' />
}