This commit is contained in:
Felipe
2024-05-25 14:04:02 -05:00
parent 50f0c04f59
commit bec1aaef21
3 changed files with 14 additions and 13 deletions
@@ -130,10 +130,12 @@ class _ProfessionalServiceHistoryListScreenState
customStatus(service),
],
),
Text(
'"${service.description.trim()}"',
overflow: TextOverflow.ellipsis,
),
service.description.isEmpty
? const SizedBox()
: Text(
'"${service.description.trim()}"',
overflow: TextOverflow.ellipsis,
),
],
),
),