Fix #478 - Rename attribute triggeringStatus

This commit is contained in:
Jack Anderson 2024-09-26 11:07:14 +01:00 committed by y.yerli
parent c6778416d3
commit a2ff98643a
2 changed files with 2 additions and 2 deletions

View file

@ -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');
});
}));

View file

@ -75,6 +75,6 @@ export class UpdateFlexRelateModuleAction extends FieldLogicActionHandler {
}
getTriggeringStatus(): string[] {
return ['onDependencyChange'];
return ['onAttributeChange'];
}
}