Skip to content

Commit

Permalink
allow dollar in layer and dataset name
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Büßemeyer authored and Michael Büßemeyer committed Nov 27, 2024
1 parent 6c0a472 commit 6b01e09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/javascripts/admin/dataset/dataset_components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export const layerNameRules = [
},
// Note that these rules are also checked by the backend
{
pattern: /^[0-9a-zA-Z_.-]+$/,
message: "Only letters, digits and the following characters are allowed: . _ -",
pattern: /^[0-9a-zA-Z_.\-$.]+$/,
message: "Only letters, digits and the following characters are allowed: . _ - $",
},
{
validator: syncValidator(
Expand Down

0 comments on commit 6b01e09

Please sign in to comment.