mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-10 04:08:03 -06:00
Added search bar on all pages
This commit is contained in:
@@ -84,9 +84,11 @@ class DocumentModel extends Equatable {
|
||||
id: id,
|
||||
title: title ?? this.title,
|
||||
content: content ?? this.content,
|
||||
documentType: documentType?.call() ?? this.documentType,
|
||||
correspondent: correspondent?.call() ?? this.correspondent,
|
||||
storagePath: storagePath?.call() ?? this.storagePath,
|
||||
documentType:
|
||||
documentType != null ? documentType.call() : this.documentType,
|
||||
correspondent:
|
||||
correspondent != null ? correspondent.call() : this.correspondent,
|
||||
storagePath: storagePath != null ? storagePath.call() : this.storagePath,
|
||||
tags: tags ?? this.tags,
|
||||
created: created ?? this.created,
|
||||
modified: modified ?? this.modified,
|
||||
|
||||
Reference in New Issue
Block a user