Skip to content

Commit

Permalink
Merge pull request #154 from JoeyBarnes/main
Browse files Browse the repository at this point in the history
Fixed threshold value in template
  • Loading branch information
JoeyBarnes authored Mar 12, 2024
2 parents d0af3b4 + c3f3f72 commit 56ac9c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/layouts/partials/templates/arm/log.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
},
"threshold": {
"type": "string",
"defaultValue": "{{ .properties.threshold }}",
"defaultValue": "{{ int .properties.threshold }}",
"metadata": {
"description": "The threshold value at which the alert is activated."
}
Expand Down
2 changes: 1 addition & 1 deletion docs/layouts/partials/templates/arm/metric-static.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
},
"threshold": {
"type": "string",
"defaultValue": "{{ .properties.threshold }}",
"defaultValue": "{{ int .properties.threshold }}",
"metadata": {
"description": "The threshold value at which the alert is activated."
}
Expand Down

0 comments on commit 56ac9c4

Please sign in to comment.