From 07bc594116d8f3c4a28fb8ba3d2c0707d364a407 Mon Sep 17 00:00:00 2001 From: Joseph Barnes Date: Wed, 18 Oct 2023 09:05:28 -0500 Subject: [PATCH] fixed threshold bug for grafana dashboard --- docs/layouts/partials/templates/grafana/dashboard.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/layouts/partials/templates/grafana/dashboard.html b/docs/layouts/partials/templates/grafana/dashboard.html index a0af04fee..7eb844d4f 100644 --- a/docs/layouts/partials/templates/grafana/dashboard.html +++ b/docs/layouts/partials/templates/grafana/dashboard.html @@ -56,7 +56,7 @@ {{ if or (eq $value.properties.operator "GreaterThan") (eq $value.properties.operator "GreaterThanOrEqual") }} "color": "dark-red",{{ else }} "color": "dark-green",{{ end }} - "value": {{ if $value.properites.threshold }}{{ string $value.properties.threshold }}{{ else }}0{{ end }} + "value": {{ if $value.properties.threshold }}{{ string $value.properties.threshold }}{{ else }}0{{ end }} } ] }