Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit a1d17a0

Browse files
committed
Dropped the minimum search length down by one. So smaller names/numbers can be searched.
1 parent 70632de commit a1d17a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/components/cardContainer/dataSources/clientServerDataSource/clientServerDataSource.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface IValidateFilterModel<TFilterModelType> {
2727
}
2828

2929
export class ClientServerDataSource<TDataType> extends AsyncDataSource<TDataType> {
30-
private minSearchLength: number = 4;
30+
private minSearchLength: number = 3;
3131
private search: string;
3232
private filterModel: any;
3333

0 commit comments

Comments
 (0)