dev@locazia: fix front_format

This commit is contained in:
user 2024-02-29 01:44:32 +03:00
parent 5a1583f926
commit d6e0e123bc
1 changed files with 1 additions and 1 deletions

View File

@ -14,4 +14,4 @@ class DisplayMixin:
if not plain_text:
raise NotImplementedError
return f"{self.first_name} {self.last_name}".strip()
return f"{self.meta.get('first_name', '')} {self.meta.get('last_name', '')}".strip()