@acorex/platform 20.6.0-next.17 → 20.6.0-next.19

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.
@@ -637,7 +637,7 @@ const AXPLayoutDetailsViewViewModel = signalStore(withState(() => {
637
637
  });
638
638
  //
639
639
  await this.loadAdapter(adapter);
640
- await this.loadPage();
640
+ await this.loadPage(undefined, true);
641
641
  },
642
642
  updateContext(context) {
643
643
  patchState(store, {
@@ -909,7 +909,8 @@ class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent {
909
909
  return secondaryFooterActions.some((action) => action.visible != false);
910
910
  }, ...(ngDevMode ? [{ debugName: "hasVisibleFooterSecondaryActions" }] : []));
911
911
  this.hasFooter = computed(() => {
912
- return this.hasVisibleFooterPrimaryActions() || this.hasVisibleFooterSecondaryActions();
912
+ return ((this.hasVisibleFooterPrimaryActions() || this.hasVisibleFooterSecondaryActions()) &&
913
+ !this.vm.currentPage()?.isReadonly);
913
914
  }, ...(ngDevMode ? [{ debugName: "hasFooter" }] : []));
914
915
  this.#FooterActionsEffect = effect(async () => {
915
916
  this.updateTrigger();