Fixed None type in EmployeeModel.py

This commit is contained in:
2025-03-10 10:23:48 +01:00
parent f5b32d6621
commit 5b031e9d8d
3 changed files with 4 additions and 3 deletions

View File

@@ -175,7 +175,7 @@ Item
Text
{
text: model.display === null? "": model.display
text: (model.display === null || model.display === undefined)? "": model.display
elide: Text.ElideRight
width: parent.width
height: parent.height