Open Mr-ziqiang opened 1 year ago
In publish.js line No.366,i find a bug,look flow
members.forEach(function (member) { if (!member.scope === 'static') return; <------- this will not work itemsNav += "<li data-type='member'"; if(docdash.collapse) itemsNav += " style='display: none;'"; itemsNav += ">"; itemsNav += linkto(member.longname, member.name); itemsNav += "</li>"; });
I think maybe you want write to
if(member.scope!=='static') return;
In publish.js line No.366,i find a bug,look flow
I think maybe you want write to