diff --git a/lib/cards/card_widget.dart b/lib/cards/card_widget.dart index 8911301..e1d2fe8 100644 --- a/lib/cards/card_widget.dart +++ b/lib/cards/card_widget.dart @@ -134,17 +134,15 @@ class CardWidget extends StatelessWidget { List body = []; body.add(CardHeader(name: card.name)); entitiesToShow.forEach((EntityWrapper entity) { - if (!entity.entity.isHidden) { - body.add( - Padding( - padding: EdgeInsets.fromLTRB(0.0, 4.0, 0.0, 4.0), - child: EntityModel( - entityWrapper: entity, - handleTap: true, - child: entity.entity.buildDefaultWidget(context) - ), - )); - } + body.add( + Padding( + padding: EdgeInsets.fromLTRB(0.0, 4.0, 0.0, 4.0), + child: EntityModel( + entityWrapper: entity, + handleTap: true, + child: entity.entity.buildDefaultWidget(context) + ), + )); }); return Card( child: Padding(