Skip to content

Commit 69a2ef4

Browse files
author
Martynas Žilinskas
committed
Fixed action in form-store actions.
1 parent d169105 commit 69a2ef4

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

packages/simplr-forms/src/actions/form-store.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,7 @@ export abstract class FieldAction extends FormAction {
2222

2323
export class StateChanged extends FormAction { }
2424

25-
export class FieldRegistered extends FormAction {
26-
constructor(protected formId: string, private fieldId: string) {
27-
super(formId);
28-
}
29-
30-
public get FieldId(): string {
31-
return this.fieldId;
32-
}
33-
}
25+
export class FieldRegistered extends FieldAction { }
3426

3527
export class FieldsGroupRegistered extends FormAction {
3628
constructor(protected formId: string, private fieldsGroupId: string) {

0 commit comments

Comments
 (0)