@nettyapps/ntybase 21.1.19 → 21.1.20

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.
@@ -479,7 +479,8 @@ class NettyAppsBase {
479
479
  constructor() {
480
480
  effect(() => {
481
481
  const name = this.pageName();
482
- if (name) {
482
+ const isEmbedded = this._isEmbedded();
483
+ if (name && !isEmbedded) {
483
484
  const translationKey = name.startsWith('@') ? name : `@${name}`;
484
485
  this.translateService.stream(translationKey).subscribe((translated) => {
485
486
  if (translated == translationKey) {
@@ -1364,7 +1365,6 @@ class NettyAgGridBase extends NettyAppsBase {
1364
1365
  allowLog = signal(false, ...(ngDevMode ? [{ debugName: "allowLog" }] : []));
1365
1366
  allowRead = signal(true, ...(ngDevMode ? [{ debugName: "allowRead" }] : []));
1366
1367
  // Parse query parameters
1367
- // Parse query parameters
1368
1368
  queryParameterGUID = toSignal(this.routerActive.queryParamMap.pipe(map((params) => params.get('parameters')), map((value) => this.parseOrReturnValue(value))), {
1369
1369
  initialValue: null, // set initial value to null
1370
1370
  });