From c58cc090aebe1101724515a11a73bce8222f5265 Mon Sep 17 00:00:00 2001 From: Rowan Seymour Date: Wed, 11 Dec 2024 22:45:49 +0000 Subject: [PATCH] Allow more characters in result names --- flows/results.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flows/results.go b/flows/results.go index 9830caba7..d2fc282f9 100644 --- a/flows/results.go +++ b/flows/results.go @@ -16,7 +16,7 @@ import ( ) func init() { - resultNameRegex := regexp.MustCompile(`^[a-zA-Z0-9\-_\s&:/@%?]{1,64}$`) + resultNameRegex := regexp.MustCompile(`^[a-zA-Z0-9\-_\s&:/@%?',]{1,64}$`) resultCategoryRegex := regexp.MustCompile(`^.{1,36}$`) utils.RegisterValidatorTag("result_name",