@ibiz-template/runtime 0.2.18-dev.0 → 0.2.18-dev.1

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/dist/index.esm.js CHANGED
@@ -623,7 +623,9 @@ import qs from "qs";
623
623
  // src/model/utils/util.ts
624
624
  function findModelChild(models, id) {
625
625
  if (models) {
626
- const model = models.find((item) => item.id === id);
626
+ const model = models.find(
627
+ (item) => item.id.toLowerCase() === id.toLowerCase()
628
+ );
627
629
  if (model) {
628
630
  return model;
629
631
  }