Index: chrome/browser/resources/print_preview/data/measurement_system.js |
diff --git a/chrome/browser/resources/print_preview/data/measurement_system.js b/chrome/browser/resources/print_preview/data/measurement_system.js |
index 3eee6fa2f96dddf6bdbd8e684dbcf55f43c29f71..ef28f86f4d16b9496461d92d682798eb2c06555b 100644 |
--- a/chrome/browser/resources/print_preview/data/measurement_system.js |
+++ b/chrome/browser/resources/print_preview/data/measurement_system.js |
@@ -123,7 +123,7 @@ cr.define('print_preview', function() { |
var precision = MeasurementSystem.Precision_[this.unitType_]; |
var roundedValue = Math.round(value / precision) * precision; |
// Truncate |
- return roundedValue.toFixed( |
+ return +roundedValue.toFixed( |
MeasurementSystem.DecimalPlaces_[this.unitType_]); |
}, |