From 1bbcfa3d0b28f886f70bbdfabfb774d639e90272 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Thu, 5 Dec 2024 17:41:44 -0800 Subject: [PATCH] Don't use visibility: collapse --- static/list.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/list.html b/static/list.html index fc4bba7..66cbfaf 100644 --- a/static/list.html +++ b/static/list.html @@ -62,9 +62,9 @@ document.addEventListener('DOMContentLoaded', async () => { const query = row.getAttribute('data-query'); if (search == undefined || search == '' || query.includes(search)) { - row.style.visibility = 'visible'; + row.style.display = 'flex'; } else { - row.style.visibility = 'collapse'; + row.style.display = 'none'; } } });