Skip to content

Commit

Permalink
Merge pull request #18 from vdice/fix/extension-name-limit
Browse files Browse the repository at this point in the history
fix(marketplace): limit extension name to 14 characters
  • Loading branch information
Mossaka authored Sep 10, 2024
2 parents 590f01d + 1bb807e commit f946976
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions marketplace/createUIDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,11 @@
"type": "Microsoft.Common.TextBox",
"label": "Cluster extension resource name",
"defaultValue": "",
"toolTip": "Only lowercase alphanumeric characters are allowed, and the value must be 6-30 characters long.",
"toolTip": "Only lowercase alphanumeric characters are allowed, and the value must be 6-14 characters long.",
"constraints": {
"required": true,
"regex": "^[a-z0-9]{6,30}$",
"validationMessage": "Only lowercase alphanumeric characters are allowed, and the value must be 6-30 characters long."
"regex": "^[a-z0-9]{6,14}$",
"validationMessage": "Only lowercase alphanumeric characters are allowed, and the value must be 6-14 characters long."
},
"visible": true
}
Expand Down

0 comments on commit f946976

Please sign in to comment.