open-nomad/ui/app/components/service-status-indicator.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
321 B
Handlebars
Raw Normal View History

<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>