From 545aef7de054f4b5b95efb77ed3b3089f1384e05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralph=20K=C3=BChnert?= Date: Thu, 15 Oct 2020 10:04:33 +0200 Subject: [PATCH] fix conceptidentifier validity check --- kable/concepts/concepts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kable/concepts/concepts.go b/kable/concepts/concepts.go index 3e37a87..0df20d7 100644 --- a/kable/concepts/concepts.go +++ b/kable/concepts/concepts.go @@ -20,7 +20,7 @@ import ( const ( ConceptFileName = "concept.json" - ConceptIdentifierRegex = "^([a-z/]+)@([a-z]+)$" + ConceptIdentifierRegex = "^([a-z/\\-123456789]+)@([a-z]+)$" ConceptStringInputType InputTypeIdentifier = "string" ConceptSelectionInputType InputTypeIdentifier = "select" ConceptMapInputType InputTypeIdentifier = "map"