Skip to content

Commit

Permalink
Revert "fix: extend regex to allow special characters in umlaut"
Browse files Browse the repository at this point in the history
This reverts commit 1570172.
  • Loading branch information
JordanGerada3 committed Aug 6, 2024
1 parent 1570172 commit 13a809e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const N = (tag, c, att) => {
return append(n, c)
}
const SEARCH_VALIDATION_REGEX =
/^[a-zA-ZÀ-ÿŚął\d][a-zA-ZÀ-ÿŚął\d !#'$@&%()*+,\-_./:;=<>?[\]\\^]{0,255}$/;
/^[a-zA-Z0-9][a-zA-Z0-9 !#'$@&%()*+,\-_./:;=<>?[\]\\^]{0,255}$/

const remove = (n) => n.parentElement.removeChild(n)

Expand Down

0 comments on commit 13a809e

Please sign in to comment.