We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d169105 commit 69a2ef4Copy full SHA for 69a2ef4
packages/simplr-forms/src/actions/form-store.ts
@@ -22,15 +22,7 @@ export abstract class FieldAction extends FormAction {
22
23
export class StateChanged extends FormAction { }
24
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
-}
+export class FieldRegistered extends FieldAction { }
34
35
export class FieldsGroupRegistered extends FormAction {
36
constructor(protected formId: string, private fieldsGroupId: string) {
0 commit comments