diff --git a/tvapp2/www/index.html b/tvapp2/www/index.html
index 2949017f..6818b5ae 100644
--- a/tvapp2/www/index.html
+++ b/tvapp2/www/index.html
@@ -21,7 +21,7 @@
-
+
@@ -458,11 +458,8 @@
jQuery(function($)
{
- $(document.body).tooltip({ selector: "[title]" });
- $('#action-health')
- .attr('data-original-title', `Health check in ${ timeLeft }`)
- .attr('aria-label', `Health check in ${ timeLeft }`)
- .attr('data-bs-original-title', `Health check in ${ timeLeft }`)
+ const tooltip = bootstrap.Tooltip.getInstance('#action-health') // Returns a Bootstrap tooltip instance
+ tooltip.setContent({ '.tooltip-inner': `Health check in ${ timeLeft }` })
});
const Heart = document.getElementsByClassName('fa-heart');