Fix issue with unnamed view
This commit is contained in:
@ -87,7 +87,7 @@ class HAView {
|
||||
} else {
|
||||
return
|
||||
Tab(
|
||||
text: name.toUpperCase(),
|
||||
text: "${name?.toUpperCase() ?? "UNNAMED VIEW"}",
|
||||
);
|
||||
}
|
||||
} else {
|
||||
@ -101,7 +101,7 @@ class HAView {
|
||||
);
|
||||
} else {
|
||||
return Tab(
|
||||
text: linkedEntity.displayName.toUpperCase(),
|
||||
text: "${linkedEntity.displayName?.toUpperCase()}",
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user