mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-17 03:56:31 +01:00
fix enter select
This commit is contained in:
parent
8af0259671
commit
7beb8a0929
2 changed files with 13 additions and 9 deletions
|
|
@ -6,7 +6,7 @@ import { MatchingModel } from '../data/matching-model';
|
|||
name: 'filter'
|
||||
})
|
||||
export class FilterPipe implements PipeTransform {
|
||||
transform(items: MatchingModel[], searchText: string): any[] {
|
||||
transform(items: MatchingModel[], searchText: string): MatchingModel[] {
|
||||
if (!items) return [];
|
||||
if (!searchText) return items;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue