From cf3cdd849344dc28a5ebd220ef5857f5553e7c7d Mon Sep 17 00:00:00 2001 From: KhaledNjim <160496984+KhaledNjim@users.noreply.github.com> Date: Tue, 27 Feb 2024 17:17:59 +0100 Subject: [PATCH] LA-1220 Fix:Updated text when expiration date is not available Co-authored-by: Dat H. Pham --- .../myspace/document_details/document_details_widget.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/widget/myspace/document_details/document_details_widget.dart b/lib/presentation/widget/myspace/document_details/document_details_widget.dart index fac35753f..be29f14eb 100644 --- a/lib/presentation/widget/myspace/document_details/document_details_widget.dart +++ b/lib/presentation/widget/myspace/document_details/document_details_widget.dart @@ -132,7 +132,7 @@ class _DocumentDetailsWidgetState extends State { _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(),