Fixed issue with GroupCreate showing error
• Fixed: - issue with GroupCreate showing error
This commit is contained in:
parent
abf6e9fe53
commit
5f3aef6b3b
|
@ -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' />
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue