@annalib/anna-core 4.2.8 → 4.2.10

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