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

View file

@ -43,7 +43,7 @@ export default Ember.Component.extend({
if (icon) {
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() {