I'm new to Blazor and client side web development in general. I have the following block of code in my Blazor app:
<h1 class="page-title">
All Offices
<a href="@("office-edit")" class="btn btn-primary table-btn"
data-toggle="tooltip"
data-placement="top"
title="Add new office">
<i class="fas fa-plus"></i>
</a>
</h1>
The tooltip works fine when I hover my mouse over it and move away. However when I click through the link, the tooltip remains visible. How should I ensure that it disappears?