bnstooltips 1.18.15 → 1.18.16
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.es.js +2 -2
- package/build/index.es.js.map +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -8828,13 +8828,13 @@ function AddSkillMastery(subInfoGroups, masteryPoints, masteryValue, masteryIsPe
|
|
|
8828
8828
|
React__default["default"].createElement("div", null,
|
|
8829
8829
|
"Damage increase:\u00A0",
|
|
8830
8830
|
React__default["default"].createElement("span", { className: "tooltipArg" },
|
|
8831
|
-
masteryValue,
|
|
8831
|
+
masteryValue.toString().replace(',', '.'),
|
|
8832
8832
|
"%"))
|
|
8833
8833
|
:
|
|
8834
8834
|
React__default["default"].createElement("div", null,
|
|
8835
8835
|
"Cooldown reduction:\u00A0",
|
|
8836
8836
|
React__default["default"].createElement("span", { className: "tooltipArg" },
|
|
8837
|
-
masteryValue,
|
|
8837
|
+
masteryValue.toString().replace(',', '.'),
|
|
8838
8838
|
" sec."))),
|
|
8839
8839
|
],
|
|
8840
8840
|
});
|