FIX: Typo

This commit is contained in:
Robin Ward 2016-03-25 16:20:59 -04:00
parent 83b79a4e1e
commit 4cca4f2f5b
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ export default Ember.Component.extend({
@computed('count', 'badge.grant_count') @computed('count', 'badge.grant_count')
displayCount(count, grantCount) { displayCount(count, grantCount) {
const c = parseInt(count || grantCount || 0); const count = parseInt(count || grantCount || 0);
if (count > 1) { if (count > 1) {
return count; return count;
} }