Open varjmes opened 9 years ago
In #113 I say that all questions should have a category, to avoid issues like this one. However, I still think that it is worth adding a way to add questions without a category to an "Uncategorised" section, for visual and informational wins. This way, if someone forgets to add a category label but adds a label of "answered", it won't look visually strange in the app and will also serve as a reminder to us that we have uncategorised questions?
A while back I noticed a strange gap between some of the questions on the FAQ app and it only just clicked why this was the case.
In the JavaScript, we take each category of issues and give it a heading (this is the label that was given to the issue). The two issues below the gap have no category label, thus show up in their own category with a blank heading.
There are two ways we could fix this:
1: Ensure we add a
cat:
label to all GitHub issues that also have a label ofanswered
(as only answered questions appear in the FAQ app) 2: Add in some logic to sayif question has no label, give it a label of "miscellaneous"
(or something like that).The first suggestion seems like the easiest solution, but I'd like to hear opinions!