Skip to content

Commit

Permalink
LA-1220 Fix:Updated text when expiration date is not available
Browse files Browse the repository at this point in the history
Co-authored-by: Dat H. Pham <[email protected]>
  • Loading branch information
KhaledNjim and hoangdat committed Feb 28, 2024
1 parent a78f621 commit f55f0c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class _DocumentDetailsWidgetState extends State<DocumentDetailsWidget> {
_documentInformationTile(AppLocalizations.of(context).created,
state.document?.creationDate.getMMMddyyyyFormatString() ?? ''),
_documentInformationTile(AppLocalizations.of(context).expiration,
state.document?.expirationDate?.getMMMddyyyyFormatString() ?? AppLocalizations.of(context).no_results_found),
state.document?.expirationDate?.getMMMddyyyyFormatString() ?? '',
],
),
Divider(),
Expand Down

0 comments on commit f55f0c6

Please sign in to comment.