Skip to content

Commit

Permalink
Merged in bugfix/SHIBUI-937 (pull request #273)
Browse files Browse the repository at this point in the history
SHIBUI-937: Added regex pattern for Refresh Delay Factor (real number 0-1) to Dynamic HTTP Metadata Provider;
  • Loading branch information
Jodie Muramoto authored and rmathis committed Jan 22, 2019
2 parents 1ec950d + ef8e4bd commit 0c735ac
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,16 @@
"refreshDelayFactor": {
"title": "label.refresh-delay-factor",
"description": "tooltip.refresh-delay-factor",
"type": "number",
"type": "string",
"widget": {
"id": "number",
"step": 0.01
},
"placeholder": "label.real-number",
"minimum": 0.01,
"maximum": 0.99,
"default": null
"minimum": 0,
"maximum": 1,
"default": null,
"pattern": "^([0]*(\\.[0-9]+)?|[0]*\\.[0-9]*[1-9][0-9]*)$"
},
"minCacheDuration": {
"title": "label.min-cache-duration",
Expand Down

0 comments on commit 0c735ac

Please sign in to comment.