Merge pull request #21204 from messutied/patch-1

redux-form: added missing label?: string field
This commit is contained in:
Daniel Rosenwasser
2017-11-09 01:38:32 -08:00
committed by GitHub

View File

@@ -35,6 +35,7 @@ export interface CommonFieldProps {
export interface BaseFieldProps<P = {}> extends Partial<CommonFieldProps> {
name: string;
label?: string;
component?: ComponentType<P> | "input" | "select" | "textarea",
format?: Formatter | null;
normalize?: Normalizer;