@annalib/anna-core 4.2.8 → 4.2.9

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.
@@ -3286,6 +3286,10 @@ class AnnaNonEditableGenericTableComponent {
3286
3286
  const tableViewHeight = e.target.offsetHeight; // viewport
3287
3287
  const tableScrollHeight = e.target.scrollHeight; // length of all table
3288
3288
  const scrollLocation = e.target.scrollTop; // how far user scrolled
3289
+ const elements = document.getElementsByClassName("remarks-info-tooltip");
3290
+ while (elements.length > 0) {
3291
+ elements[0].remove();
3292
+ }
3289
3293
  // If the user has scrolled within 150px of the bottom, add more data
3290
3294
  const buffer = 150;
3291
3295
  const limit = tableScrollHeight - tableViewHeight - buffer;