github.com/hernad/nomad@v1.6.112/ui/app/components/conditional-link-to.hbs (about)

     1  {{!
     2    Copyright (c) HashiCorp, Inc.
     3    SPDX-License-Identifier: MPL-2.0
     4  ~}}
     5  
     6  {{#if @condition}}
     7    <LinkTo @route={{@route}} @model={{@model}} @query={{this.query}} class={{@class}} aria-label={{@label}}>
     8      {{yield}}
     9    </LinkTo>
    10  {{else}}
    11    <span class={{@class}}>
    12      {{yield}}
    13    </span>
    14  {{/if}}