Skip to content

Commit

Permalink
Fixes #22428: Missing tooltip on unused directives icon
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelGauthier committed Mar 3, 2023
1 parent de304c1 commit d74a2c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ object DisplayDirectiveTree extends Loggable {
"""

<span id={"badge-apm-" + tooltipId}>[BADGE]</span> ++
<span class="treeDirective bsTooltip" data-toggle="tooltip" data-placement="top" data-html="true" title={
<span class="treeDirective bsTooltip" data-toggle="tooltip" data-placement="top" data-html="true" data-container="body" title={
tooltipContent
}>
<span class="techversion">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ var buildDirectiveTree = function(id, initially_select, appContext, select_limit

openTreeNodes(id, "directiveTreeSettings_nodesState", data);

$(id+' .rudder-label').bsTooltip();
$(id+' .rudder-label, .bsTooltip').bsTooltip();
}).on("ready.jstree", function () {
// make jstree node openable in a new tab
var nodes = document.querySelectorAll('[id^="jsTree-"][id$="_anchor"]');
Expand Down

0 comments on commit d74a2c7

Please sign in to comment.