Escape dash in regex

This commit is contained in:
Luke Barnard 2017-10-31 11:48:56 +00:00
parent f53a12d904
commit 302bd6c3e9

View file

@ -55,7 +55,7 @@ export default React.createClass({
_checkGroupId: function(e) {
let error = null;
if (!/^[a-z0-9=_-\.\/]*$/.test(this.state.groupId)) {
if (!/^[a-z0-9=_\-\.\/]*$/.test(this.state.groupId)) {
error = _t("Community IDs may only contain characters a-z, 0-9, or '=_-./'");
}
this.setState({