You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a new project,
the console outputs the error message:
Pattern attribute value ^[a-z0-9]+(?:[._-][a-z0-9]+)*$ is not a valid regular expression: Uncaught SyntaxError: Invalid regular expression: /^[a-z0-9]+(?:[._-][a-z0-9]+)*$/v: Invalid character in character class
The same error in
creating a robot account.
creating a new tag
creating project
It is the - in pattern ^[a-z0-9]+(?:[._-][a-z0-9]+)*$ should be escaped \-
When creating a new project,
the console outputs the error message:
The same error in
It is the
-
in pattern^[a-z0-9]+(?:[._-][a-z0-9]+)*$
should be escaped\-
see: https://stackoverflow.com/questions/76285652/why-is-my-regex-valid-with-the-regexp-u-flag-but-not-with-the-v-flag-and-does-n/76287241#76287241
The text was updated successfully, but these errors were encountered: