Fix issue where dynamic tooltips titles might not get updated

This commit is contained in:
Quincy Morgan
2020-05-14 16:56:29 -04:00
parent db9eed2434
commit 834b8b4d6c
+2
View File
@@ -57,6 +57,7 @@ export function uiTooltip(klass) {
headingSelect.enter()
.append('div')
.attr('class', 'tooltip-heading')
.merge(headingSelect)
.html(heading);
var textSelect = selection
@@ -69,6 +70,7 @@ export function uiTooltip(klass) {
textSelect.enter()
.append('div')
.attr('class', 'tooltip-text')
.merge(textSelect)
.html(text);
var keyhintWrap = selection