Skip to content
Snippets Groups Projects

Removing useless error log

Merged Benoit Alessandroni requested to merge bugfix/removing-useless-error-log into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -57,10 +57,10 @@ function refreshPagination() {
for (let resources_container of resources_containers) {
if (
resources_container.childElementCount < 5 || (
resources_container.nextSibling &&
resources_container.nextSibling.querySelector("nav span span+span"))
.textContent == 1
resources_container.nextSibling && (
resources_container.childElementCount < 5 ||
resources_container.nextSibling.querySelector("nav span span+span").textContent == 1
)
) {
resources_container.nextSibling.setAttribute("style", "display:none");
} else if (resources_container.nextSibling) {
Loading