github.com/hernad/nomad@v1.6.112/ui/app/components/service-status-indicator.hbs (about)

     1  {{!
     2    Copyright (c) HashiCorp, Inc.
     3    SPDX-License-Identifier: MPL-2.0
     4  ~}}
     5  
     6  <span
     7    class="service-status-indicator status-{{@check.Status}} tooltip is-right-aligned"
     8    aria-label="{{@check.Status}} at {{format-ts @check.Timestamp}}"
     9  >
    10    {{#if (eq @check.Status "failure")}}
    11      &times;
    12    {{/if}}
    13  
    14    <span class="timestamp"><span>{{format-ts @check.Timestamp timeOnly=true}}</span></span>
    15  </span>