Karthik Raveendran
Can you take a look at the rp_metadata.html for the save metadata toast? The save toast is acting like a button, and I'm wondering if its because of the way its wrapped inside a button tag (see code below):
<button class="btn btn-primary w-25" id="savemetadata_rp" onclick="saveMetaData()" >Save
<div class="toast metaSave hide" role="alert" data-autohide="true" data-delay="2000" style="position:absolute;right:40px;bottom:15px;">
<div class="toast-header">
<i class="fas fa-save fa-bounce fa-lg mr-2"></i>
<strong class="mr-auto text-success ">Saved!</strong>
</div>
</div>
</button>
Karthik Raveendran Is there a specific example of the toast notifications obstructing buttons in the right panel? After merging I cannot find any examples of the toast obstructing buttons.
I did notice a weird behavior where the toast notification after clicking Save in the Metadata right panel is itself a button, and clicking it caused the right-panel to load again. Not sure if related.