Correct blank user page

This commit is contained in:
Hillel Coren 2020-06-18 20:17:57 +03:00
parent 6cdaa64069
commit fdcbb2add2
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class EntityHeader extends StatelessWidget {
Row(
children: [
Expanded(child: _value1()),
if (secondValue != null) ...[
if ((secondValue ?? '').isNotEmpty) ...[
SizedBox(width: 8),
Expanded(child: _value2()),
],