monkey-front-components 0.0.350 → 0.0.351

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.
@@ -1032,9 +1032,9 @@ class MECXDynamicSelectSearchComponent {
1032
1032
  if (_form?.disabled || !_field || !_field?.functions?.onHandleGenericLoad)
1033
1033
  return;
1034
1034
  const { name } = _field;
1035
- if (_field?.value?.length)
1036
- return;
1037
- const { func, url } = _field?.functions?.onHandleGenericLoad;
1035
+ const { func, url } = _field?.functions?.onHandleGenericLoad || {
1036
+ func: null, url: ''
1037
+ };
1038
1038
  if (!func || !self[func]) {
1039
1039
  console.error('onHandleGenericLoad not declared');
1040
1040
  return;