From 609fb5705b286cff767e3e625d8fddd224bdcf4d Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Mon, 26 May 2025 03:11:27 -0400 Subject: [PATCH] fix permissions panel table row formatting (#29444) --- html/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/search.js b/html/search.js index 59ac83573b7..76ff88bce30 100644 --- a/html/search.js +++ b/html/search.js @@ -23,7 +23,7 @@ function updateSearch() { } if (found == 0) row.style.display = 'none'; else { - row.style.display = 'block'; + row.style.display = 'table-row'; row.className = alt_style; if (alt_style == 'alt') alt_style = 'norm'; else alt_style = 'alt';