Resolves #365 Fix missed group entities
This commit is contained in:
parent
f88e6f9b61
commit
2f110b20bb
@ -134,7 +134,6 @@ class CardWidget extends StatelessWidget {
|
||||
List<Widget> 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),
|
||||
@ -144,7 +143,6 @@ class CardWidget extends StatelessWidget {
|
||||
child: entity.entity.buildDefaultWidget(context)
|
||||
),
|
||||
));
|
||||
}
|
||||
});
|
||||
return Card(
|
||||
child: Padding(
|
||||
|
Reference in New Issue
Block a user