From 668435a6373bdaf1f6cfd20127df644c4cbcb1c3 Mon Sep 17 00:00:00 2001 From: Meekdai Date: Tue, 2 Apr 2024 18:22:48 +0800 Subject: [PATCH] Update tag.html --- templates/tag.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/tag.html b/templates/tag.html index a2836b8..7746df9 100644 --- a/templates/tag.html +++ b/templates/tag.html @@ -104,7 +104,7 @@ function showList(){ for(i in jsonData){ if(i!='labelColorDict'){ let div=document.createElement("div"); - div.setAttribute("class","lists "+jsonData[i]['label']); + div.setAttribute("class","lists "+jsonData[i]['labels'].join(" ")); let item=document.createElement("a"); item.setAttribute("class","SideNav-item d-flex flex-items-center flex-justify-between"); item.setAttribute("href",jsonData[i]['postUrl']);