mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 03:15:48 -06:00
Merge pull request #205 from zjean/fix/allow-empty-original-filename
Allow empty original_filename of document
This commit is contained in:
@@ -55,6 +55,12 @@ class _DocumentMetaDataWidgetState extends State<DocumentMetaDataWidget> {
|
||||
context: context,
|
||||
label: S.of(context)!.mediaFilename,
|
||||
).paddedOnly(bottom: widget.itemSpacing),
|
||||
if (state.document.originalFileName != null)
|
||||
DetailsItem.text(
|
||||
state.document.originalFileName!,
|
||||
context: context,
|
||||
label: S.of(context)!.originalMD5Checksum,
|
||||
).paddedOnly(bottom: widget.itemSpacing),
|
||||
DetailsItem.text(
|
||||
state.metaData!.originalChecksum,
|
||||
context: context,
|
||||
|
||||
Reference in New Issue
Block a user