+
-
-
Assign view permissions
-
-
-
- Users:
-
-
+
+
Assign view permissions
+
+
+
+ Users:
-
-
Assign edit permissions
-
-
-
- Users:
-
-
+
+
+ Groups:
-
-
- Groups:
-
-
+
-
Edit permissions also grant viewing permissions
+
Assign edit permissions
+
+
+
+
Edit permissions also grant viewing permissions
+
+
-
-
-
+
+
+
diff --git a/src-ui/src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
index 7bb192a90..72541e7c0 100644
--- a/src-ui/src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
+++ b/src-ui/src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html
@@ -8,8 +8,12 @@
-
-
+ @if (patternRequired) {
+
+ }
+ @if (patternRequired) {
+
+ }
diff --git a/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
index 63f235b43..25bddad76 100644
--- a/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
+++ b/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html
@@ -7,7 +7,9 @@
-
Data type cannot be changed after a field is created
+ @if (typeFieldDisabled) {
+
Data type cannot be changed after a field is created
+ }
diff --git a/src-ui/src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
index 12e70f3cd..c88961ecc 100644
--- a/src-ui/src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
+++ b/src-ui/src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html
@@ -9,8 +9,12 @@
-
-
+ @if (patternRequired) {
+
+ }
+ @if (patternRequired) {
+
+ }
diff --git a/src-ui/src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
index 1a9ee58da..1067951b3 100644
--- a/src-ui/src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
+++ b/src-ui/src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html
@@ -1,26 +1,30 @@
-
-
diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts
index ac26bc393..4fe6e75fd 100644
--- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts
+++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts
@@ -1726,4 +1726,13 @@ describe('FilterEditorComponent', () => {
)
expect(component.textFilter).toEqual('')
})
+
+ it('should adjust text filter targets if more like search', () => {
+ const TEXT_FILTER_TARGET_FULLTEXT_MORELIKE = 'fulltext-morelike' // private const
+ component.textFilterTarget = TEXT_FILTER_TARGET_FULLTEXT_MORELIKE
+ expect(component.textFilterTargets).toContainEqual({
+ id: TEXT_FILTER_TARGET_FULLTEXT_MORELIKE,
+ name: $localize`More like`,
+ })
+ })
})
diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts
index f53921fff..8e0f7c27a 100644
--- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts
+++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts
@@ -105,6 +105,51 @@ const RELATIVE_DATE_QUERYSTRINGS = [
},
]
+const DEFAULT_TEXT_FILTER_TARGET_OPTIONS = [
+ { id: TEXT_FILTER_TARGET_TITLE, name: $localize`Title` },
+ {
+ id: TEXT_FILTER_TARGET_TITLE_CONTENT,
+ name: $localize`Title & content`,
+ },
+ { id: TEXT_FILTER_TARGET_ASN, name: $localize`ASN` },
+ {
+ id: TEXT_FILTER_TARGET_CUSTOM_FIELDS,
+ name: $localize`Custom fields`,
+ },
+ {
+ id: TEXT_FILTER_TARGET_FULLTEXT_QUERY,
+ name: $localize`Advanced search`,
+ },
+]
+
+const TEXT_FILTER_TARGET_MORELIKE_OPTION = {
+ id: TEXT_FILTER_TARGET_FULLTEXT_MORELIKE,
+ name: $localize`More like`,
+}
+
+const DEFAULT_TEXT_FILTER_MODIFIER_OPTIONS = [
+ {
+ id: TEXT_FILTER_MODIFIER_EQUALS,
+ label: $localize`equals`,
+ },
+ {
+ id: TEXT_FILTER_MODIFIER_NULL,
+ label: $localize`is empty`,
+ },
+ {
+ id: TEXT_FILTER_MODIFIER_NOTNULL,
+ label: $localize`is not empty`,
+ },
+ {
+ id: TEXT_FILTER_MODIFIER_GT,
+ label: $localize`greater than`,
+ },
+ {
+ id: TEXT_FILTER_MODIFIER_LT,
+ label: $localize`less than`,
+ },
+]
+
@Component({
selector: 'pngx-filter-editor',
templateUrl: './filter-editor.component.html',
@@ -200,29 +245,12 @@ export class FilterEditorComponent implements OnInit, OnDestroy {
_moreLikeDoc: PaperlessDocument
get textFilterTargets() {
- let targets = [
- { id: TEXT_FILTER_TARGET_TITLE, name: $localize`Title` },
- {
- id: TEXT_FILTER_TARGET_TITLE_CONTENT,
- name: $localize`Title & content`,
- },
- { id: TEXT_FILTER_TARGET_ASN, name: $localize`ASN` },
- {
- id: TEXT_FILTER_TARGET_CUSTOM_FIELDS,
- name: $localize`Custom fields`,
- },
- {
- id: TEXT_FILTER_TARGET_FULLTEXT_QUERY,
- name: $localize`Advanced search`,
- },
- ]
if (this.textFilterTarget == TEXT_FILTER_TARGET_FULLTEXT_MORELIKE) {
- targets.push({
- id: TEXT_FILTER_TARGET_FULLTEXT_MORELIKE,
- name: $localize`More like`,
- })
+ return DEFAULT_TEXT_FILTER_TARGET_OPTIONS.concat([
+ TEXT_FILTER_TARGET_MORELIKE_OPTION,
+ ])
}
- return targets
+ return DEFAULT_TEXT_FILTER_TARGET_OPTIONS
}
textFilterTarget = TEXT_FILTER_TARGET_TITLE_CONTENT
@@ -235,28 +263,7 @@ export class FilterEditorComponent implements OnInit, OnDestroy {
public textFilterModifier: string
get textFilterModifiers() {
- return [
- {
- id: TEXT_FILTER_MODIFIER_EQUALS,
- label: $localize`equals`,
- },
- {
- id: TEXT_FILTER_MODIFIER_NULL,
- label: $localize`is empty`,
- },
- {
- id: TEXT_FILTER_MODIFIER_NOTNULL,
- label: $localize`is not empty`,
- },
- {
- id: TEXT_FILTER_MODIFIER_GT,
- label: $localize`greater than`,
- },
- {
- id: TEXT_FILTER_MODIFIER_LT,
- label: $localize`less than`,
- },
- ]
+ return DEFAULT_TEXT_FILTER_MODIFIER_OPTIONS
}
get textFilterModifierIsNull(): boolean {
diff --git a/src-ui/src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html b/src-ui/src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
index 4563e9624..0d0a84eb8 100644
--- a/src-ui/src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
+++ b/src-ui/src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html
@@ -8,11 +8,13 @@
-
-
Filter rules error occurred while saving this view
- The error returned was :
- {{ error.filter_rules }}
-
+ @if (error?.filter_rules) {
+
+
Filter rules error occurred while saving this view
+ The error returned was :
+ {{ error.filter_rules }}
+
+ }