Fix hidden group issue
This commit is contained in:
@ -16,7 +16,7 @@ class CardWidget extends StatelessWidget {
|
||||
final entityModel = EntityModel.of(context);
|
||||
if (entityModel != null) {
|
||||
final groupEntity = entityModel.entity;
|
||||
if (groupEntity.isHidden) {
|
||||
if ((groupEntity!= null) && (groupEntity.isHidden)) {
|
||||
return Container(width: 0.0, height: 0.0,);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user