diff --git a/src/components/notificationLine/view/notificationLineView.js b/src/components/notificationLine/view/notificationLineView.js index 218831352..0b749b9ec 100644 --- a/src/components/notificationLine/view/notificationLineView.js +++ b/src/components/notificationLine/view/notificationLineView.js @@ -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; }