Improved wording

This commit is contained in:
Matthias 2023-05-28 16:10:02 +02:00
parent 4549ac783e
commit 58c497b9a8

View File

@ -200,7 +200,7 @@ function initializeChart() {
const profit = params[0].data.profit; const profit = params[0].data.profit;
const currentProfit = params[0].data['currentProfit']; const currentProfit = params[0].data['currentProfit'];
const profitText = currentProfit const profitText = currentProfit
? `Profit (with unrealized profit): ${currentProfit}` ? `Projected profit (including unrealized): ${currentProfit}`
: `Profit: ${profit}`; : `Profit: ${profit}`;
return profitText; return profitText;
}, },