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']; } }