This commit is contained in:
estevez-dev
2019-05-09 13:16:35 +03:00
parent 277c67fc6f
commit 14cc55a2c7
4 changed files with 16 additions and 16 deletions

View File

@ -85,7 +85,7 @@ class HAView {
} else {
return
Tab(
text: name.toUpperCase(),
text: "${name?.toUpperCase()}",
);
}
} else {
@ -99,7 +99,7 @@ class HAView {
);
} else {
return Tab(
text: linkedEntity.displayName.toUpperCase(),
text: "${linkedEntity?.displayName?.toUpperCase()}",
);
}