FIX: add white space in discourse-tags so tags can wrap

This commit is contained in:
Neil Lalonde 2017-04-18 17:09:34 -04:00
parent 2bc3aa7ed4
commit e7b0ce1334
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ export default function(topic, params){
buffer = "<div class='discourse-tags'>";
if (tags) {
for(let i=0; i<tags.length; i++){
buffer += renderTag(tags[i]);
buffer += renderTag(tags[i]) + ' ';
}
}