fleetcor-lwc 2.7.3 → 2.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -351,9 +351,12 @@ export default class Tooltip extends BaseElement {
|
|
|
351
351
|
}
|
|
352
352
|
|
|
353
353
|
renderedCallback() {
|
|
354
|
+
const text = this.firstChild.querySelector('.flt-tooltip__text')
|
|
354
355
|
if (this.firstSetup) {
|
|
355
356
|
this.firstSetup = !this.firstSetup
|
|
356
357
|
this.update()
|
|
358
|
+
} else if (this.content != text.innerHTML) {
|
|
359
|
+
this.update()
|
|
357
360
|
}
|
|
358
361
|
}
|
|
359
362
|
}
|