Added empty box icon to unsolved topics

This commit is contained in:
David Taylor
2017-02-27 15:00:04 +00:00
parent 73e4909615
commit 726b9a460d
4 changed files with 18 additions and 1 deletions
@@ -223,6 +223,13 @@ export default {
title: I18n.t('solved.has_accepted_answer'),
icon: 'check-square-o'
});
}else if(this.topic.can_have_answer && this.siteSettings.solved_enabled && this.siteSettings.empty_box_on_unsolved){
results.push({
openTag: 'span',
closeTag: 'span',
title: I18n.t('solved.no_accepted_answer'),
icon: 'square-o'
});
}
return results;
}.property()