feat: Implement new tag form field

This commit is contained in:
Anton Stubenbord
2023-04-10 01:00:34 +02:00
parent 5eb19dbe83
commit f2fa4e16de
9 changed files with 448 additions and 102 deletions

View File

@@ -194,9 +194,12 @@ class _DocumentFilterFormState extends State<DocumentFilterForm> {
Widget _buildTagsFormField() {
return TagQueryFormField(
allowExclude: false,
options: widget.tags,
name: DocumentModel.tagsKey,
initialValue: widget.initialFilter.tags,
allowOnlySelection: false,
allowCreation: false,
);
return TagFormField(
name: DocumentModel.tagsKey,