-
Notifications
You must be signed in to change notification settings - Fork 737
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
Taxonomy topics #6130
Taxonomy topics #6130
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really nicely done! I went through the new topics and sub-topics carefully, and I have just a few topic title nits. Also, it looks like
kitsune/kitsune/wiki/widgets.py
Line 14 in f9c7d42
topics_and_subtopics = Topic.active.all() |
needs to change to something like topics_and_subtopics = Topic.active.filter(product__isnull=False).all()
in order to resolve the test failures.
|
||
NEW_TOPICS_DATA = [ | ||
{ | ||
"title": "Backup, recovery and sync", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Super nit. Josh would prefer a comma after "recovery".
], | ||
}, | ||
{ | ||
"title": "Search, tag and share", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Super nit. Josh prefers a comma after "tag".
], | ||
}, | ||
{ | ||
"title": "Add-ons, extensions and themes", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Super nit. Josh prefers a comma after "extensions".
], | ||
}, | ||
{ | ||
"title": "Passwords and sign-in", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Super nit. I think the guidelines suggest "sign in" (without the hyphen) instead of "sign-in".
9ad72a6
to
6afaca0
Compare
Thanks @escattone for the quick and thorough review! |
No description provided.