Skip to content

Commit

Permalink
Fix tooltip capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
gmiclotte committed Apr 22, 2022
1 parent f06c86e commit 259ed80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Extension/sources/injectable/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2625,7 +2625,7 @@
if (dataMultiplier === -1) {
dataMultiplier = killTimeS;
}
let tooltip = `<span>${formatNumber(Math.floor(baseGpPerSecond * dataMultiplier))} raw GP/${this.selectedTimeShorthand}</span><br/>`;
let tooltip = `<span>${formatNumber(Math.floor(baseGpPerSecond * dataMultiplier))} Raw GP/${this.selectedTimeShorthand}</span><br/>`;
tooltip = `<div className="text-center">${tooltip}</div>`;
document.getElementById(`MCS gpPerSecond Output`)._tippy.setContent(tooltip);
}
Expand All @@ -2635,7 +2635,7 @@
if (prayerXpPerSecond === 0) {
xpPerPP = 0;
}
let tooltip = `<span>${(xpPerPP).toFixed(3)} Prayer XP per point</span><br/>`;
let tooltip = `<span>${(xpPerPP).toFixed(3)} Prayer XP/Point</span><br/>`;
tooltip = `<div className="text-center">${tooltip}</div>`;
document.getElementById(`MCS prayerXpPerSecond Output`)._tippy.setContent(tooltip);
}
Expand Down

0 comments on commit 259ed80

Please sign in to comment.