github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/ui/app/components/service-status-indicator.hbs (about)

     1  <span
     2    class="service-status-indicator status-{{@check.Status}} tooltip is-right-aligned"
     3    aria-label="{{@check.Status}} at {{format-ts @check.Timestamp}}"
     4  >
     5    {{#if (eq @check.Status "failure")}}
     6      &times;
     7    {{/if}}
     8  
     9    <span class="timestamp"><span>{{format-ts @check.Timestamp timeOnly=true}}</span></span>
    10  </span>