mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-22 18:16:43 +00:00
feat(GODT-2787): Tweaking Bug Report form with last Review.
This commit is contained in:
@ -131,8 +131,9 @@ QString BugReportFlow::collectAnswers(quint8 categoryId) const {
|
||||
const QString& answer = getAnswer(var.toInt());
|
||||
if (answer.isEmpty())
|
||||
continue;
|
||||
answers += " > " + questions_[var.toInt()].toMap()["text"].toString() + "\n\r";
|
||||
answers += answer + "\n\r";
|
||||
answers += "#### " + questions_[var.toInt()].toMap()["text"].toString() + "\n\r";
|
||||
for (const QString& line : answer.split("\n"))
|
||||
answers += "> " + line + "\n\r";
|
||||
}
|
||||
return answers;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user