qcobjects 2.4.92 → 2.4.94

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/VERSION CHANGED
@@ -1 +1 @@
1
- 2.4.92
1
+ 2.4.94
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qcobjects",
3
- "version": "2.4.92",
3
+ "version": "2.4.94",
4
4
  "description": "QCObjects is an Open-source framework that empowers full-stack developers to make micro-services and micro-frontends into an N-Tier architecture.",
5
5
  "main": "src/index.cjs",
6
6
  "module": "src/index.mjs",
package/src/QCObjects.js CHANGED
@@ -2557,7 +2557,7 @@
2557
2557
 
2558
2558
  return new Promise (function (resolve, reject){
2559
2559
  try {
2560
- Promise.resolve(componentDone.call(_component_));
2560
+ resolve(componentDone.call(_component_));
2561
2561
  } catch (e){
2562
2562
  reject(e);
2563
2563
  }
@@ -3381,7 +3381,7 @@
3381
3381
  * @param params an object with the params to build the uri path
3382
3382
  */
3383
3383
  var ComponentURI = ({TPL_SOURCE ,COMPONENTS_BASE_PATH, COMPONENT_NAME, TPLEXTENSION}) => {
3384
- const templateURI = (TPL_SOURCE === "default")?(`${COMPONENTS_BASE_PATH}${COMPONENT_NAME}${TPLEXTENSION}`):("");
3384
+ const templateURI = (TPL_SOURCE === "default")?(`${COMPONENTS_BASE_PATH}${COMPONENT_NAME}.${TPLEXTENSION}`):("");
3385
3385
  return templateURI;
3386
3386
  };
3387
3387