open-nomad/ui/app/components/service-status-indicator.hbs
Phil Renaud a28e1bcc1e
[ui] Service Healthchecks: styles for pseudo-timestamp axis (#14677)
* Styles for pseudo-timestamp axis

* Changelog
2022-09-23 16:53:28 -04:00

11 lines
321 B
Handlebars

<span
class="service-status-indicator status-{{@check.Status}} tooltip is-right-aligned"
aria-label="{{@check.Status}} at {{format-ts @check.Timestamp}}"
>
{{#if (eq @check.Status "failure")}}
&times;
{{/if}}
<span class="timestamp"><span>{{format-ts @check.Timestamp timeOnly=true}}</span></span>
</span>