diff --git a/netbox/project-static/dist/netbox.js b/netbox/project-static/dist/netbox.js index 6c0d46b53..58c419b3d 100644 Binary files a/netbox/project-static/dist/netbox.js and b/netbox/project-static/dist/netbox.js differ diff --git a/netbox/project-static/dist/netbox.js.map b/netbox/project-static/dist/netbox.js.map index 14f5520e4..f70987c66 100644 Binary files a/netbox/project-static/dist/netbox.js.map and b/netbox/project-static/dist/netbox.js.map differ diff --git a/netbox/project-static/src/search.ts b/netbox/project-static/src/search.ts index 8275b126e..4be740196 100644 --- a/netbox/project-static/src/search.ts +++ b/netbox/project-static/src/search.ts @@ -10,9 +10,9 @@ function quickSearchEventHandler(event: Event): void { const clearbtn = document.getElementById("quicksearch_clear") as HTMLAnchorElement; if (isTruthy(clearbtn)) { if (quicksearch.value === "") { - clearbtn.classList.add("d-none"); + clearbtn.classList.add("invisible"); } else { - clearbtn.classList.remove("d-none"); + clearbtn.classList.remove("invisible"); } } } diff --git a/netbox/templates/inc/table_controls_htmx.html b/netbox/templates/inc/table_controls_htmx.html index a90a7dc37..bbbcff59c 100644 --- a/netbox/templates/inc/table_controls_htmx.html +++ b/netbox/templates/inc/table_controls_htmx.html @@ -7,7 +7,7 @@ - + {% block extra_table_controls %}{% endblock %}