AAE-35981 Form button customization (#11047)

This commit is contained in:
Fabian Kindgen
2025-07-24 09:37:35 +02:00
committed by GitHub
parent 06a9ddc068
commit d7ec3a1b77
18 changed files with 516 additions and 56 deletions

View File

@@ -323,7 +323,7 @@ export class FormComponent extends FormBaseComponent implements OnInit, OnChange
* @returns list of form outcomes
*/
getFormDefinitionOutcomes(form: FormModel): FormOutcomeModel[] {
return [new FormOutcomeModel(form, { id: '$save', name: FormOutcomeModel.SAVE_ACTION, isSystem: true })];
return [new FormOutcomeModel(form, { id: FormModel.SAVE_OUTCOME, name: FormOutcomeModel.SAVE_ACTION, isSystem: true })];
}
checkVisibility(field: FormFieldModel) {