Fix tag filter type

This commit is contained in:
shamoon 2024-04-03 00:08:02 -07:00
parent 8cbb15bd90
commit 008c7868a6
2 changed files with 4 additions and 4 deletions

View File

@ -20,10 +20,10 @@ import { DocumentListViewService } from 'src/app/services/document-list-view.ser
import { HttpClientTestingModule } from '@angular/common/http/testing' import { HttpClientTestingModule } from '@angular/common/http/testing'
import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { FormsModule, ReactiveFormsModule } from '@angular/forms'
import { import {
FILTER_HAS_ANY_TAG,
FILTER_HAS_CORRESPONDENT_ANY, FILTER_HAS_CORRESPONDENT_ANY,
FILTER_HAS_DOCUMENT_TYPE_ANY, FILTER_HAS_DOCUMENT_TYPE_ANY,
FILTER_HAS_STORAGE_PATH_ANY, FILTER_HAS_STORAGE_PATH_ANY,
FILTER_HAS_TAGS_ANY,
} from 'src/app/data/filter-rule-type' } from 'src/app/data/filter-rule-type'
import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons'
import { DocumentService } from 'src/app/services/rest/document.service' import { DocumentService } from 'src/app/services/rest/document.service'
@ -250,7 +250,7 @@ describe('GlobalSearchComponent', () => {
component.primaryAction(DataType.Tag, object) component.primaryAction(DataType.Tag, object)
expect(qfSpy).toHaveBeenCalledWith([ expect(qfSpy).toHaveBeenCalledWith([
{ rule_type: FILTER_HAS_ANY_TAG, value: object.id.toString() }, { rule_type: FILTER_HAS_TAGS_ANY, value: object.id.toString() },
]) ])
component.primaryAction(DataType.User, object) component.primaryAction(DataType.User, object)

View File

@ -13,7 +13,7 @@ import {
FILTER_HAS_CORRESPONDENT_ANY, FILTER_HAS_CORRESPONDENT_ANY,
FILTER_HAS_DOCUMENT_TYPE_ANY, FILTER_HAS_DOCUMENT_TYPE_ANY,
FILTER_HAS_STORAGE_PATH_ANY, FILTER_HAS_STORAGE_PATH_ANY,
FILTER_HAS_ANY_TAG, FILTER_HAS_TAGS_ANY,
} from 'src/app/data/filter-rule-type' } from 'src/app/data/filter-rule-type'
import { DataType } from 'src/app/data/datatype' import { DataType } from 'src/app/data/datatype'
import { ObjectWithId } from 'src/app/data/object-with-id' import { ObjectWithId } from 'src/app/data/object-with-id'
@ -145,7 +145,7 @@ export class GlobalSearchComponent {
filterRuleType = FILTER_HAS_STORAGE_PATH_ANY filterRuleType = FILTER_HAS_STORAGE_PATH_ANY
break break
case DataType.Tag: case DataType.Tag:
filterRuleType = FILTER_HAS_ANY_TAG filterRuleType = FILTER_HAS_TAGS_ANY
break break
case DataType.User: case DataType.User:
editDialogComponent = UserEditDialogComponent editDialogComponent = UserEditDialogComponent