Added search bar on all pages

This commit is contained in:
Anton Stubenbord
2023-02-01 00:27:56 +01:00
parent e9e9fdc336
commit 748cd21713
35 changed files with 1122 additions and 653 deletions

View File

@@ -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,