@sumaris-net/ngx-components 1.3.9 → 1.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/sumaris-net.ngx-components.umd.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/shared/material/autocomplete/material.autocomplete.js +2 -2
- package/fesm2015/sumaris-net.ngx-components.js +1 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -1499,7 +1499,7 @@
|
|
|
1499
1499
|
.pipe(operators.map(function (_) { return _this.searchable && _this.formControl.value; })))
|
|
1500
1500
|
.pipe(
|
|
1501
1501
|
// If value is a string (and is not = '*'), filter if not enough character
|
|
1502
|
-
operators.filter(function (value) { return
|
|
1502
|
+
operators.filter(function (value) { return value === '*' || !(typeof value === 'string') || value.length >= _this.suggestLengthThreshold; }),
|
|
1503
1503
|
// Distinguish changes
|
|
1504
1504
|
operators.distinctUntilChanged()))
|
|
1505
1505
|
.pipe(
|