From 97521e8cc5da64d2ecc7380a94cd9d1ccbf93c09 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Sat, 12 Sep 2020 21:11:03 -0700 Subject: [PATCH] remove extra parameter --- src/js/slaveCostJS.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js index 1041e1e8053..65123bbca5f 100644 --- a/src/js/slaveCostJS.js +++ b/src/js/slaveCostJS.js @@ -1599,7 +1599,7 @@ globalThis.BeautyTooltip = function(slave) { // Make a link. Text should be slave's beauty. Clicking the link will display detailed info about that beauty over the top of the page (tooltip-style) const beauty = Beauty(slave); const displayFunc = V.cheatMode || V.debugMode ? BeautyDisplay : undefined; - const interactor = new App.UI.DOM.InteractiveDetails("beauty", beauty.toString(), displayFunc, ["pink", "bold"]); + const interactor = new App.UI.DOM.InteractiveDetails(beauty.toString(), displayFunc, ["pink", "bold"]); return interactor.render(); // Upon the link being clicked, set up some links to sort the info and a span to show it in -- GitLab