claim modified name remove

This commit is contained in:
Surendiran 2025-11-17 11:36:26 +05:30
parent fcb596621a
commit 78537e78e0

View File

@ -470,6 +470,7 @@ class _ClaimHistoryPopupState extends State<ClaimHistoryPopup> {
Widget _getStepTitleFromApi(String status, Map<String, dynamic> data) {
final modifiedBy = data['modified_by'] ?? '';
final modifiedAt = data['modified_at'] ?? '';
final symbol = (data['modified_by'] != null && data['modified_by'] != '') ? ' - ' : '';
return RichText(
text: TextSpan(
@ -483,7 +484,7 @@ class _ClaimHistoryPopupState extends State<ClaimHistoryPopup> {
),
),
TextSpan(
text: ' ($modifiedBy $modifiedAt)',
text: ' ($modifiedBy$symbol$modifiedAt)',
style: GoogleFonts.poppins(
fontSize: 14,
fontWeight: FontWeight.w400,