@acorex/platform 20.0.10 → 20.0.11

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.
@@ -3629,8 +3629,8 @@ class AXPQuickEntityModifyPopupAction extends AXPWorkflowAction {
3629
3629
  const popup = await this.popupService.open(com, {
3630
3630
  title: headerTitle
3631
3631
  ? headerTitle
3632
- : title ??
3633
- `${this.translateService.translateSync('entity.modify')} ${this.translateService.translateSync(entityRef.formats.individual)}`,
3632
+ : (title ??
3633
+ `${this.translateService.translateSync('entity.modify')} ${this.translateService.translateSync(entityRef.formats.individual)}`),
3634
3634
  size: this.platform.is('Mobile') || this.platform.is('SM') ? 'full' : size ? size : 'md',
3635
3635
  data: {
3636
3636
  vm,
@@ -3691,7 +3691,6 @@ class AXPEntityApplyUpdatesAction extends AXPWorkflowAction {
3691
3691
  }
3692
3692
  async execute(context) {
3693
3693
  try {
3694
- debugger;
3695
3694
  const [moduleName, entityName] = context.getVariable('entity').split('.');
3696
3695
  const data = context.getVariable('data');
3697
3696
  const entityRef = await this.entityRegistery.resolve(moduleName, entityName);