ps-toolkit-ui 1.4.80 → 1.4.81
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/ps-toolkit-ui.umd.js +1 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/table/table.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +1 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3022,7 +3022,7 @@
|
|
|
3022
3022
|
}
|
|
3023
3023
|
else if (c.enum != null) {
|
|
3024
3024
|
c.search.type = exports.InputType.Select;
|
|
3025
|
-
c.search.options = [new OptionClass('', '0')].concat(EnumUtils.getKeysAndValues(c.enum).map(function (x) { return new OptionClass(x.key, x.value); }));
|
|
3025
|
+
c.search.options = [new OptionClass('', '0')].concat(EnumUtils.getKeysAndValues(c.enum).map(function (x) { return new OptionClass(_this.table.l(x.key), x.value); }));
|
|
3026
3026
|
}
|
|
3027
3027
|
else {
|
|
3028
3028
|
c.search.type = exports.InputType.Text;
|