@esfaenza/extensions 20.3.15 → 20.3.18

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.
@@ -2421,7 +2421,8 @@ class AppEmbeddingExtensions {
2421
2421
  // Devo ridirezionare a {sorgente}/#/pages/embed/{thisModule}/etc...
2422
2422
  let module = modules.find(t => t.altname == EmbeddingSource);
2423
2423
  if (!module) {
2424
- console.error(`Impossibile trovare il modulo con altname uguale a ${this.EmbeddingSource}`);
2424
+ console.warn(`Impossibile trovare il modulo con altname uguale a ${this.EmbeddingSource}. Suppongo navigazione in place`);
2425
+ return;
2425
2426
  }
2426
2427
  let afterPagesExt = this.router.url.split("pages_ext")[1].substring(1).split("/").slice(1).join("/");
2427
2428
  let sourceModuleUrl = myconfig.AuthUrl.includes("localhost") ? `http://localhost:${Localhost}` : module.uiurl;