()
| 224 | |
| 225 | /* ----------------- Utility Functions ----------------- */ |
| 226 | function updateItemsPerPageSelect() { |
| 227 | const selectElem = document.querySelector(".form-control.bottom-select"); |
| 228 | if (selectElem) { |
| 229 | selectElem.value = localStorage.getItem("itemsPerPage") || "10"; |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | function applyProxyBypassUI() { |
| 234 | const bypass = localStorage.getItem("authBypass") === "true"; |
no outgoing calls
no test coverage detected