cloud-ide-core 2.0.64 → 2.0.65

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.
@@ -8060,7 +8060,7 @@ class CideCoreEntityManagementService {
8060
8060
  const url = cidePath.join([
8061
8061
  hostManagerRoutesUrl.cideSuiteHost,
8062
8062
  coreRoutesUrl.module,
8063
- coreRoutesUrl?.entity,
8063
+ coreRoutesUrl?.entityById,
8064
8064
  query
8065
8065
  ]);
8066
8066
  return this.http.get(url);
@@ -9866,7 +9866,7 @@ class CideCoreEntityCreateComponent {
9866
9866
  next: (response) => {
9867
9867
  if (response?.success && response?.data) {
9868
9868
  // Handle both array and single object responses
9869
- const entityData = Array.isArray(response.data) ? response.data[0] : response.data;
9869
+ const entityData = response.data;
9870
9870
  if (entityData) {
9871
9871
  this.populateFormWithEntityData(entityData);
9872
9872
  this.success.set('Entity data loaded successfully');