Commit 4c1aa96a by daggeryu Committed by GitHub

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

parent 6cc34fba
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment