Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

About the static members of the error #115

Open
Mr-ziqiang opened this issue Jan 10, 2023 · 0 comments
Open

About the static members of the error #115

Mr-ziqiang opened this issue Jan 10, 2023 · 0 comments

Comments

@Mr-ziqiang
Copy link

Mr-ziqiang commented Jan 10, 2023

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;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant