mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
FIx: obliquely trim spaces from global search (#8484)
This commit is contained in:
parent
af67dbe523
commit
ea514a7ed8
@ -1050,7 +1050,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/global-search/global-search.component.ts</context>
|
<context context-type="sourcefile">src/app/components/app-frame/global-search/global-search.component.ts</context>
|
||||||
<context context-type="linenumber">104</context>
|
<context context-type="linenumber">103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2818183879511244335" datatype="html">
|
<trans-unit id="2818183879511244335" datatype="html">
|
||||||
@ -3067,22 +3067,22 @@
|
|||||||
<source>Successfully updated object.</source>
|
<source>Successfully updated object.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/global-search/global-search.component.ts</context>
|
<context context-type="sourcefile">src/app/components/app-frame/global-search/global-search.component.ts</context>
|
||||||
<context context-type="linenumber">193</context>
|
<context context-type="linenumber">192</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/global-search/global-search.component.ts</context>
|
<context context-type="sourcefile">src/app/components/app-frame/global-search/global-search.component.ts</context>
|
||||||
<context context-type="linenumber">231</context>
|
<context context-type="linenumber">230</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1801333259018423190" datatype="html">
|
<trans-unit id="1801333259018423190" datatype="html">
|
||||||
<source>Error occurred saving object.</source>
|
<source>Error occurred saving object.</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/global-search/global-search.component.ts</context>
|
<context context-type="sourcefile">src/app/components/app-frame/global-search/global-search.component.ts</context>
|
||||||
<context context-type="linenumber">196</context>
|
<context context-type="linenumber">195</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/app-frame/global-search/global-search.component.ts</context>
|
<context context-type="sourcefile">src/app/components/app-frame/global-search/global-search.component.ts</context>
|
||||||
<context context-type="linenumber">234</context>
|
<context context-type="linenumber">233</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8700121026680200191" datatype="html">
|
<trans-unit id="8700121026680200191" datatype="html">
|
||||||
|
@ -8,7 +8,7 @@ import {
|
|||||||
} from '@angular/core'
|
} from '@angular/core'
|
||||||
import { Router } from '@angular/router'
|
import { Router } from '@angular/router'
|
||||||
import { NgbDropdown, NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap'
|
import { NgbDropdown, NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap'
|
||||||
import { Subject, debounceTime, distinctUntilChanged, filter, map } from 'rxjs'
|
import { Subject, debounceTime, distinctUntilChanged, filter } from 'rxjs'
|
||||||
import { DataType } from 'src/app/data/datatype'
|
import { DataType } from 'src/app/data/datatype'
|
||||||
import {
|
import {
|
||||||
FILTER_FULLTEXT_QUERY,
|
FILTER_FULLTEXT_QUERY,
|
||||||
@ -89,7 +89,6 @@ export class GlobalSearchComponent implements OnInit {
|
|||||||
this.queryDebounce
|
this.queryDebounce
|
||||||
.pipe(
|
.pipe(
|
||||||
debounceTime(400),
|
debounceTime(400),
|
||||||
map((query) => query?.trim()),
|
|
||||||
filter((query) => !query?.length || query?.length > 2),
|
filter((query) => !query?.length || query?.length > 2),
|
||||||
distinctUntilChanged()
|
distinctUntilChanged()
|
||||||
)
|
)
|
||||||
@ -109,7 +108,7 @@ export class GlobalSearchComponent implements OnInit {
|
|||||||
|
|
||||||
private search(query: string) {
|
private search(query: string) {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
this.searchService.globalSearch(query).subscribe((results) => {
|
this.searchService.globalSearch(query.trim()).subscribe((results) => {
|
||||||
this.searchResults = results
|
this.searchResults = results
|
||||||
this.loading = false
|
this.loading = false
|
||||||
this.resultsDropdown.open()
|
this.resultsDropdown.open()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user