diff --git a/src/components/charts/CumProfitChart.vue b/src/components/charts/CumProfitChart.vue index 012b56e7..a5590af3 100644 --- a/src/components/charts/CumProfitChart.vue +++ b/src/components/charts/CumProfitChart.vue @@ -200,7 +200,7 @@ function initializeChart() { const profit = params[0].data.profit; const currentProfit = params[0].data['currentProfit']; const profitText = currentProfit - ? `Profit (with unrealized profit): ${currentProfit}` + ? `Projected profit (including unrealized): ${currentProfit}` : `Profit: ${profit}`; return profitText; },