Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 4eebc69

Browse files
committed
fix(custom-field): bring back name
1 parent 3a3b97e commit 4eebc69

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/core/models.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export interface FormValidation {
4040
}
4141

4242
export interface InputBase {
43+
name: string;
4344
label?: string;
4445
disabled?: boolean;
4546
customClass?: string;
@@ -80,7 +81,7 @@ export type CheckboxInput = InputBase & {
8081

8182
export type CustomInput = InputBase & {
8283
type: 'custom-field';
83-
value: boolean | string | number;
84+
value: boolean | string;
8485
};
8586

8687
export type EmailInput = InputBase & {

0 commit comments

Comments
 (0)