diff options
author | Nathan Barton <nbarton915@users.noreply.github.com> | 2023-05-18 11:18:01 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-18 11:18:01 -0600 |
commit | 4f6e8fe0d265bc87bbcf7a7f08bf945b50e63968 (patch) | |
tree | 9d196d1d8c7d02cd92d4d93bfd263897f6618386 /layouts/issues/issue.html | |
parent | d2551095402177be56d01be714a83079667e32c0 (diff) |
issues resolution time now aware of whether severity was `down` or not
Diffstat (limited to 'layouts/issues/issue.html')
-rw-r--r-- | layouts/issues/issue.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/layouts/issues/issue.html b/layouts/issues/issue.html index 71bb30a..a14c922 100644 --- a/layouts/issues/issue.html +++ b/layouts/issues/issue.html @@ -47,7 +47,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 }} </strong> <span class="tooltip__text"> @@ -66,7 +69,9 @@ {{ $secsForCalc := (mod $timeDiff 60) }} {{ div (sub $timeDiff $secsForCalc) 60 }}m - {{ T "ofDowntime" }}. + {{ if eq .Params.severity "down" }} + {{ T "ofDowntime" }} + {{ end }} </strong> <span class="tooltip__text"> |