FIX: Hover text was showing incorrect number

This commit is contained in:
Robin Ward 2017-02-01 13:16:32 -05:00
parent c725225f69
commit 0f3dabb54c
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ registerUnbound('number', (orig, params) => {
let title = I18n.toNumber(orig, { precision: 0 });
if (params.numberKey) {
title = I18n.t(params.numberKey, { number: title, count: parseInt(title) });
title = I18n.t(params.numberKey, { number: title, count: parseInt(orig) });
}
let classNames = 'number';