We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15e5b8a + 9a90d93 commit da00ce1Copy full SHA for da00ce1
redisinsight/ui/src/utils/validations.ts
@@ -111,7 +111,7 @@ export const errorValidateNegativeInteger = (value: string) => {
111
}
112
113
export const validateCertName = (initValue: string) =>
114
- initValue.replace(/[^ a-zA-Z0-9!@#$%^&*-_()[\]]+/gi, '').toString()
+ initValue.replace(/[^ a-zA-Z0-9!@#$%^&*\-_()[\]]+/gi, '').toString()
115
116
export const isRequiredStringsValid = (...params: string[]) => params.every((p = '') => p.length > 0)
117
0 commit comments