Files
nomad/ui/app/templates/components/tooltip.hbs
2023-08-10 17:27:29 -05:00

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}}