File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -870,6 +870,7 @@ export default class Form<
870
870
action,
871
871
autoComplete,
872
872
enctype,
873
+ acceptcharset,
873
874
acceptCharset,
874
875
noHtml5Validate = false ,
875
876
disabled = false ,
@@ -905,7 +906,7 @@ export default class Form<
905
906
action = { action }
906
907
autoComplete = { autoComplete }
907
908
encType = { enctype }
908
- acceptCharset = { acceptCharset }
909
+ acceptCharset = { acceptCharset || acceptcharset }
909
910
noValidate = { noHtml5Validate }
910
911
onSubmit = { this . onSubmit }
911
912
as = { as }
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ export const PROPERTIES_KEY = 'properties';
23
23
export const REQUIRED_KEY = 'required' ;
24
24
export const SUBMIT_BTN_OPTIONS_KEY = 'submitButtonOptions' ;
25
25
export const REF_KEY = '$ref' ;
26
+ /**
27
+ * @deprecated Replace with correctly spelled constant `RJSF_ADDITIONAL_PROPERTIES_FLAG`
28
+ */
29
+ export const RJSF_ADDITIONAL_PROPERTIES_FLAG = '__rjsf_additionalProperties' ;
26
30
export const RJSF_ADDITIONAL_PROPERTIES_FLAG = '__rjsf_additionalProperties' ;
27
31
export const ROOT_SCHEMA_PREFIX = '__rjsf_rootSchema' ;
28
32
export const UI_FIELD_KEY = 'ui:field' ;
You can’t perform that action at this time.
0 commit comments