Fix an issue about the categories/tags count.#42
Merged
ivan-nginx merged 1 commit intotheme-next:masterfrom Jan 17, 2018
Merged
Fix an issue about the categories/tags count.#42ivan-nginx merged 1 commit intotheme-next:masterfrom
ivan-nginx merged 1 commit intotheme-next:masterfrom
Conversation
ivan-nginx
approved these changes
Jan 17, 2018
Member
ivan-nginx
left a comment
There was a problem hiding this comment.
It's good, yeah. This bug is so old what i forget about it. GJ.
Member
|
P.S. For Archives mb need to do the same thing. |
Contributor
Author
|
🎉 The Archives seems ok, |
Contributor
|
Good Fixed ! |
tsanie
added a commit
to tsanie/hexo-theme-next
that referenced
this pull request
Jan 25, 2018
15 tasks
|
Good Fixed ! |
Member
This was referenced Jul 12, 2019
stevenjoezhang
added a commit
that referenced
this pull request
Jul 14, 2019
stevenjoezhang
added a commit
that referenced
this pull request
Jul 16, 2019
stevenjoezhang
added a commit
that referenced
this pull request
Jul 16, 2019
stevenjoezhang
added a commit
that referenced
this pull request
Aug 31, 2019
tongluyang
pushed a commit
to tongluyang/hexo-theme-next
that referenced
this pull request
Nov 19, 2019
Fix an issue about the categories/tags count.
tongluyang
pushed a commit
to tongluyang/hexo-theme-next
that referenced
this pull request
Nov 19, 2019
Contributor
|
Superseded by hexojs/hexo#3624 |
Merged
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
What is the current behavior?
I have an article in the _drafts that contains 2 tags: compression, pngquant.
But the tags page shows the number with all articles including the draft ones.
What is the new behavior?
This commit changes the variable from reading
site.tags.lengthtosite.tags.filter(t => t.length).length, to make sure the result number will be right. (Also changes the categories)Does this PR introduce a breaking change?