missed a closing buffer.push tag
This commit is contained in:
parent
fdacb67c71
commit
ed5896c511
|
@ -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() {
|
||||||
|
|
Loading…
Reference in New Issue