aboutsummaryrefslogtreecommitdiff
path: root/layouts/issues/small.html
diff options
context:
space:
mode:
authorMantas Vilčinskas <hi@mnts.lt>2023-09-02 14:12:54 +0300
committerGitHub <noreply@github.com>2023-09-02 14:12:54 +0300
commited865eea911683997fad231f4300dfdf060d78d4 (patch)
treea99a5fe988ca7db820d3532b32a41fec55f9104a /layouts/issues/small.html
parent04678ea04fe93a578f949f23e6a7e74a88fc54cd (diff)
parentf317386a8e46ae7b7a0e00b3cb21b3dbfebb5da8 (diff)
v5.5.2 - Fixing bugs, small fixes
Diffstat (limited to 'layouts/issues/small.html')
-rw-r--r--layouts/issues/small.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/layouts/issues/small.html b/layouts/issues/small.html
index 5eb3a2d..97baec9 100644
--- a/layouts/issues/small.html
+++ b/layouts/issues/small.html
@@ -52,7 +52,10 @@
{{ $minutesForCalc := (mod $diffInMin 60) }}
{{ div (sub $diffInMin $minutesForCalc) 60 }}h
- {{ $minutesForCalc }}m {{ T "ofDowntime" }}
+ {{ $minutesForCalc }}m
+ {{ if eq .Params.severity "down" }}
+ {{ T "ofDowntime" }}
+ {{ end }}
</div>
{{ else }}
<div class="ok">
@@ -61,7 +64,9 @@
{{ $secsForCalc := (mod $timeDiff 60) }}
{{ div (sub $timeDiff $secsForCalc) 60 }}m
+ {{ if eq .Params.severity "down" }}
<!-- {{ $secsForCalc }}s --> {{ T "ofDowntime" }}
+ {{ end }}
</div>
{{ end }}
{{ end }}