Add fiat value toggle functionality: Introduce a button to show/hide fiat values in the dashboard, enhancing user control over displayed financial data.

This commit is contained in:
padreug 2025-06-22 16:13:48 +02:00
parent fdf41c016a
commit 3d0fc9c910
2 changed files with 20 additions and 4 deletions

View file

@ -7,7 +7,8 @@ window.app = Vue.createApp({
dashboardData: null,
transactions: [],
loading: true,
error: null
error: null,
showFiatValues: false // Hide fiat values by default
}
},