FIX: Hover text was showing incorrect number
This commit is contained in:
parent
c725225f69
commit
0f3dabb54c
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue