bnstooltips 1.18.7 → 1.18.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.js CHANGED
@@ -221,7 +221,7 @@ function ReplaceIconsInHtmlString(htmlString) {
221
221
  }
222
222
  function GetStatDisplayValue(value, percent) {
223
223
  if (percent) {
224
- var percentage = value / 100;
224
+ var percentage = value / 10;
225
225
  if (Number.isInteger(percentage)) {
226
226
  return percentage.toFixed(1) + "%";
227
227
  }