File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
pkg/webui/console/components/payload-formatters-form Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ const validationSchema = Yup.object().shape({
9696 . required ( sharedMessages . validateRequired )
9797 // See https://github.com/TheThingsNetwork/lorawan-stack/blob/v3.14/api/messages.proto#L748
9898 // for validation requirements.
99- . max ( 40960 , Yup . passValues ( sharedMessages . validateTooLong ) ) ,
99+ . max ( 65536 , Yup . passValues ( sharedMessages . validateTooLong ) ) ,
100100 } ) ,
101101 [ FIELD_NAMES . GRPC ] : Yup . string ( )
102102 . matches ( addressRegexp , Yup . passValues ( sharedMessages . validateAddressFormat ) )
@@ -105,7 +105,7 @@ const validationSchema = Yup.object().shape({
105105 then : schema =>
106106 schema
107107 . required ( sharedMessages . validateRequired )
108- . max ( 40960 , Yup . passValues ( sharedMessages . validateTooLong ) ) ,
108+ . max ( 65536 , Yup . passValues ( sharedMessages . validateTooLong ) ) ,
109109 } ) ,
110110} )
111111
You can’t perform that action at this time.
0 commit comments