claim modified name remove
This commit is contained in:
parent
fcb596621a
commit
78537e78e0
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user