From a2ff98643ac99470a0da05008936cfa0ca89eac2 Mon Sep 17 00:00:00 2001 From: Jack Anderson Date: Thu, 26 Sep 2024 11:07:14 +0100 Subject: [PATCH] Fix #478 - Rename attribute triggeringStatus --- core/app/core/src/lib/fields/base/base-field.component.ts | 2 +- .../update-flex-relate-module.action.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/app/core/src/lib/fields/base/base-field.component.ts b/core/app/core/src/lib/fields/base/base-field.component.ts index 416e39bd7..88a70a743 100644 --- a/core/app/core/src/lib/fields/base/base-field.component.ts +++ b/core/app/core/src/lib/fields/base/base-field.component.ts @@ -175,7 +175,7 @@ export class BaseFieldComponent implements FieldComponentInterface, OnInit, OnDe return; } - this.logic.runLogic(attribute, this.mode as ViewMode, this.record, 'onDependencyChange'); + this.logic.runLogic(attribute, this.mode as ViewMode, this.record, 'onAttributeChange'); }); })); diff --git a/core/app/core/src/lib/fields/field-logic/update-flex-relate-module/update-flex-relate-module.action.ts b/core/app/core/src/lib/fields/field-logic/update-flex-relate-module/update-flex-relate-module.action.ts index cfe562c28..51bac3ece 100644 --- a/core/app/core/src/lib/fields/field-logic/update-flex-relate-module/update-flex-relate-module.action.ts +++ b/core/app/core/src/lib/fields/field-logic/update-flex-relate-module/update-flex-relate-module.action.ts @@ -75,6 +75,6 @@ export class UpdateFlexRelateModuleAction extends FieldLogicActionHandler { } getTriggeringStatus(): string[] { - return ['onDependencyChange']; + return ['onAttributeChange']; } }