Update client valid tag regex

This commit is contained in:
John Davis
2024-04-18 22:40:18 -04:00
parent c31bccf712
commit ee64fc414d
+1 -1
View File
@@ -7,7 +7,7 @@ import { keyedColorScheme } from "utils/color";
// Valid tag regex. The basic format here is a tag name with optional subtags
// separated by a period, and then an optional value after a colon.
export const VALID_TAG_RE = /^([^\s.:])+(.[^\s.:]+)*(:[^\s.:]+)?$/;
export const VALID_TAG_RE = /^([^\s.:])+(\.[^\s.:]+)*(:\S+)?$/;
export class TagModel {
/**