Files
nomad/ui/app/templates/components/exec/task-contents.hbs
Phil Renaud c9e4351ee5 [ui] Icon migration from {{x-icon}} to Helios (#25353)
* First batch of x-icon to hds::icons

* Bunch more icons and a note for jobrow

* Fixes for tests that depended on specific action names

* Icon-bumped-down specified to solo-icons in table cells

* Class-basing the icon bump and deferring icon svg load in env

* Exec window sidebar icons were looking a little off
2025-03-14 13:22:18 -04:00

20 lines
548 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
~}}
<div class="border-and-label">
<div class="border"></div>
<div class="task-label">
{{#if this.active}}
<Hds::Icon @name="dot" @isInline={{true}} class="active-identifier icon-vertical-bump-down" />
{{/if}}
{{this.task.name}}
</div>
</div>
{{#if this.shouldOpenInNewWindow}}
<span class="tooltip" aria-label="Open in a new window">
<Hds::Icon @name="external-link" @color="faint" @isInline={{true}} class="show-on-hover" />
</span>
{{/if}}