aefis-core-ui 2.3.0-rc40 → 2.3.0-rc41

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.
@@ -11288,8 +11288,10 @@ const BusinessObjectPicker = _ref => {
11288
11288
  return template.render(optionTemplate, option);
11289
11289
  };
11290
11290
  const getKey = useCallback(option => {
11291
+ // INFO: search for id
11291
11292
  if (idTemplate) return template.render(idTemplate, option);
11292
11293
  if (option.id) return option.id;
11294
+ if (option.Id) return option.Id;
11293
11295
  return getLabel(option);
11294
11296
  }, [idTemplate, optionTemplate]);
11295
11297
  const getFilterOptions = useCallback((options, params) => {