Files
nomad/ui/app/components/tooltip.hbs

12 lines
264 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
~}}
{{#if this.condition}}
<span class={{concat "tooltip" (if @isFullText " multiline")}} aria-label={{if @isFullText @text this.text}}>
{{yield}}
</span>
{{else}}
{{yield}}
{{/if}}