Hide empty categories in cookie banner preference panel

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-04-21 17:16:52 +04:00
parent fab95413df
commit 9ec6922fde

View File

@@ -55,6 +55,8 @@ export class ProboCategoryList extends ProboElement {
if (!this.template) return;
for (const cat of categories) {
if (cat.cookies.length === 0) continue;
const wrapper = document.createElement("probo-category");
wrapper.setAttribute("name", cat.name);
wrapper.setAttribute("kind", cat.kind);