File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
webroot/src/components/Licensee/LicenseeSearch Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ class LicenseeSearch extends mixins(MixinForm) {
111
111
name : 'first-name' ,
112
112
label : computed ( ( ) => this . $t ( 'common.firstName' ) ) ,
113
113
placeholder : computed ( ( ) => this . $t ( 'licensing.searchPlaceholderName' ) ) ,
114
- validation : Joi . string ( ) . min ( 0 ) . max ( 10 ) . messages ( this . joiMessages . string ) ,
114
+ validation : Joi . string ( ) . min ( 0 ) . max ( 100 ) . messages ( this . joiMessages . string ) ,
115
115
value : this . searchParams . firstName || '' ,
116
116
enforceMax : true ,
117
117
} ) ,
@@ -120,7 +120,7 @@ class LicenseeSearch extends mixins(MixinForm) {
120
120
name : 'last-name' ,
121
121
label : computed ( ( ) => this . $t ( 'common.lastName' ) ) ,
122
122
placeholder : computed ( ( ) => this . $t ( 'licensing.searchPlaceholderName' ) ) ,
123
- validation : Joi . string ( ) . min ( 0 ) . max ( 10 ) . messages ( this . joiMessages . string ) ,
123
+ validation : Joi . string ( ) . min ( 0 ) . max ( 100 ) . messages ( this . joiMessages . string ) ,
124
124
value : this . searchParams . lastName || '' ,
125
125
enforceMax : true ,
126
126
} ) ,
You can’t perform that action at this time.
0 commit comments