Unverified Commit ad5e5ec3 authored by Utorque's avatar Utorque Committed by GitHub
Browse files

Merge pull request #5 from Utorque/claude/forecast-app-focus-011CUd4JNmcDLMcXn8KtHbpy

Work on forecast app project
parents 50ae222e 8bf43e4f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -250,8 +250,8 @@

<script>
function toggleMonth(monthNum) {
    const content = document.getElementById(`month_CHF {monthNum}`);
    const icon = document.getElementById(`icon_CHF {monthNum}`);
    const content = document.getElementById(`month_${monthNum}`);
    const icon = document.getElementById(`icon_${monthNum}`);

    if (content.style.display === 'none') {
        content.style.display = 'block';
@@ -312,7 +312,7 @@ const profitCtx = document.getElementById('profitChart');
new Chart(profitCtx, {
    type: 'line',
    data: {
        labels: monthlyComparison.map(m => `Month CHF {m.month}`),
        labels: monthlyComparison.map(m => `Month ${m.month}`),
        datasets: [{
            label: 'Monthly Profit',
            data: monthlyComparison.map(m => {