missed a closing buffer.push tag

This commit is contained in:
Jeff Atwood 2014-11-14 00:26:23 -08:00
parent fdacb67c71
commit ed5896c511
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ export default Ember.Component.extend({
if (icon) { if (icon) {
buffer.push("<i class='glyph fa fa-" + icon + "'></i> "); buffer.push("<i class='glyph fa fa-" + icon + "'></i> ");
} }
buffer.push(this.get('description') + " <span class='count'>(" + this.get('activityCount') + ")</span>"); buffer.push(this.get('description') + " <span class='count'>(" + this.get('activityCount') + ")</span></a>");
}, },
icon: function() { icon: function() {