From 51c0ac339bfdb7bfae71e9099d929d938939cef3 Mon Sep 17 00:00:00 2001 From: miguel <31931809+miguelvaca@users.noreply.github.com> Date: Mon, 8 May 2023 12:19:15 +1000 Subject: [PATCH] Fix skin depth justification in tooltip --- magloop.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magloop.html b/magloop.html index 875a979..dbfa705 100644 --- a/magloop.html +++ b/magloop.html @@ -1901,7 +1901,7 @@ } else if(label[0] == 'S'){ var num = getMetricPrefix(value * 1e-6); - label = justifyText("Skin depth: ", num.val.toPrecision(3).toString() + ' ' + num.pfx + 'm'); + label = justifyText("Skin depth: ", num.val.toPrecision(3).toString() + ' ' + num.pfx + 'm'); } else { label += value.toFixed(3).toString(); }