From b055963fe095a29dccb58d4aac03121caeb07dff Mon Sep 17 00:00:00 2001 From: Cmdr McDonald Date: Wed, 22 Mar 2017 18:34:57 +0000 Subject: [PATCH] Fixes --- src/app/utils/BlueprintFunctions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/utils/BlueprintFunctions.js b/src/app/utils/BlueprintFunctions.js index 8c9f117d..dcaf9555 100644 --- a/src/app/utils/BlueprintFunctions.js +++ b/src/app/utils/BlueprintFunctions.js @@ -30,7 +30,7 @@ export function blueprintTooltip(translate, features, m) if (m) { // We have a module - add in the current value let current = m.getModValue(feature); - if (featureDef.type === 'percentage') { + if (featureDef.type === 'percentage' || featureDef.name === 'burst' || featureDef.name === 'burstrof') { current = Math.round(current / 10) / 10; } results.push({translate(feature)}{lowerBound}{symbol}{current}{symbol}{upperBound}{symbol});