From b9007ced9008aca9fd6ef58193cae0cdaeb8c240 Mon Sep 17 00:00:00 2001 From: daggeryu <997411652@qq.com> Date: Thu, 5 Dec 2024 23:21:20 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E5=85=B3=E9=94=AE=E8=AF=8D=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E5=8A=A0=E6=A0=87=E7=AD=BE=E8=81=9A=E5=90=88=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E5=A4=A7=E4=BA=8E1=E4=B8=AA=E7=A9=BA=E6=A0=87?= =?UTF-8?q?=E7=AD=BE=E6=B8=A0=E9=81=93=E6=97=A0=E6=B3=95=E5=B1=95=E5=BC=80?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/ChannelsTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/ChannelsTable.js b/web/src/components/ChannelsTable.js index 4445ccb4..0139030f 100644 --- a/web/src/components/ChannelsTable.js +++ b/web/src/components/ChannelsTable.js @@ -484,7 +484,7 @@ const ChannelsTable = () => { if (!enableTagMode) { channelDates.push(channels[i]); } else { - let tag = channels[i].tag; + let tag = channels[i].tag?channels[i].tag:""; // find from channelTags let tagIndex = channelTags[tag]; let tagChannelDates = undefined;