ps-toolkit-ui 1.18.9 → 1.18.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.
@@ -3922,7 +3922,7 @@
3922
3922
  }
3923
3923
  else if (c.enum != null) {
3924
3924
  c.search.type = exports.InputType.Select;
3925
- c.search.options = [new OptionClass('', '-1')].concat(EnumUtils.getKeysAndValues(c.enum).map(function (x) { return new OptionClass(_this.table.l(x.key), x.value); }));
3925
+ c.search.options = [new OptionClass('', '-1')].concat(EnumUtils.getKeysAndValues(c.enum).map(function (x) { return new OptionClass(_this.table.l(x.key), x.value.toString()); }));
3926
3926
  }
3927
3927
  else {
3928
3928
  c.search.type = exports.InputType.Text;