You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Wrap these lines at options.maxLineWidth characters
var body = answers.body ? wrap(answers.body, wrapOptions) : false;
should be change to the follwing code:
var answerBody = answers.body?answers.body:'';
if (!answerBody) {
if (answers.breakingBody) {
answerBody = answers.breakingBody;
} else if (answers.issuesBody) {
answerBody = answers.issuesBody;
}
}
// Wrap these lines at options.maxLineWidth characters
var body = answerBody ? wrap(answerBody, wrapOptions) : false;
Otherwrise, how the questions "breakingBody" and "issuesBody" take effect? Do I miss something?
The text was updated successfully, but these errors were encountered:
Something maybe wrong with the code in engine.js
I think the following code block in engine.js
should be change to the follwing code:
Otherwrise, how the questions "breakingBody" and "issuesBody" take effect? Do I miss something?
The text was updated successfully, but these errors were encountered: