We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 395bcdc commit 2f90a40Copy full SHA for 2f90a40
1 file changed
utils/results.js
@@ -43,7 +43,7 @@ module.exports = (results, order, sort) => {
43
44
results.map(result => {
45
const infoObj = {
46
- title: result.title,
+ title: typeof result.title === 'undefined' ? '' : result.title,
47
body: format(result.body_markdown),
48
answers: threadAns(result.answers)
49
};
0 commit comments