Skip to content

Commit b3379b3

Browse files
committed
Increase first & last name length in license search ui
1 parent f0c1bb8 commit b3379b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webroot/src/components/Licensee/LicenseeSearch/LicenseeSearch.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class LicenseeSearch extends mixins(MixinForm) {
111111
name: 'first-name',
112112
label: computed(() => this.$t('common.firstName')),
113113
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),
115115
value: this.searchParams.firstName || '',
116116
enforceMax: true,
117117
}),
@@ -120,7 +120,7 @@ class LicenseeSearch extends mixins(MixinForm) {
120120
name: 'last-name',
121121
label: computed(() => this.$t('common.lastName')),
122122
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),
124124
value: this.searchParams.lastName || '',
125125
enforceMax: true,
126126
}),

0 commit comments

Comments
 (0)