fix 关键词搜索加标签聚合时,大于1个空标签渠道无法展开的问题

This commit is contained in:
daggeryu
2024-12-05 23:21:20 +08:00
committed by GitHub
parent 8c42ea19b9
commit b9007ced90

View File

@@ -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;