mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-22 16:18:10 +00:00
32 lines
657 B
Handlebars
32 lines
657 B
Handlebars
![]() |
{{#if @linkParams}}
|
||
|
<DynamicLink
|
||
|
class={{this.baseClass}}
|
||
|
@params={{@linkParams}}
|
||
|
onmouseover={{action this.hideTooltipIfUntruncated}}
|
||
|
>
|
||
|
{{@text}}
|
||
|
{{#if this.showTooltip}}
|
||
|
<TooltipOnElement
|
||
|
@text={{@text}}
|
||
|
@class="truncated-text-with-tooltip__tooltip"
|
||
|
/>
|
||
|
{{/if}}
|
||
|
</DynamicLink>
|
||
|
{{else}}
|
||
|
<span
|
||
|
class={{this.baseClass}}
|
||
|
onmouseover={{action this.hideTooltipIfUntruncated}}
|
||
|
role="tooltip"
|
||
|
>
|
||
|
{{@text}}
|
||
|
{{#if this.showTooltip}}
|
||
|
<TooltipOnElement
|
||
|
@text={{@text}}
|
||
|
@class="truncated-text-with-tooltip__tooltip"
|
||
|
/>
|
||
|
{{/if}}
|
||
|
</span>
|
||
|
{{/if}}
|
||
|
|
||
|
{{yield}}
|