Skip to content

Commit

Permalink
fix conceptidentifier validity check
Browse files Browse the repository at this point in the history
  • Loading branch information
redradrat committed Oct 15, 2020
1 parent c3884cc commit 545aef7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kable/concepts/concepts.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 545aef7

Please sign in to comment.