Skip to content

Commit

Permalink
Remove the pagination navigation on check new version #3
Browse files Browse the repository at this point in the history
Signed-off-by: tdruez <[email protected]>
  • Loading branch information
tdruez committed Dec 20, 2023
1 parent 14f3131 commit dd6c031
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,10 @@
row.style.display = 'none';
});

document.querySelectorAll(".tab-content .pagination").forEach(function(element) {
element.parentNode.removeChild(element);
});

let newVersionRow = document.createElement('tr');
newVersionRow.className = 'spinner new-version';
newVersionRow.innerHTML = '<td colspan="100">' +
Expand Down

0 comments on commit dd6c031

Please sign in to comment.