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

Commit 55e09b8

Browse files
authored
Merge pull request #382 from BrentWMiller/search-with-3
Dropped the minimum search length down by one. So smaller names/numbe…
2 parents 1112e9d + a1d17a0 commit 55e09b8

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)