updated notf percent logic

This commit is contained in:
u-e 2019-05-01 13:37:28 +03:00
parent 03b8d9d8b1
commit 34f11531fa

View File

@ -55,7 +55,7 @@ class NotificationLineView extends PureComponent {
});
if (notification.weight) {
const _percent = `${(notification.weight / 100).toFixed(2)}% `;
const _percent = `${parseFloat((notification.weight / 100).toFixed(2))}% `;
_title = _percent + _title;
}