diff options
author | Joris | 2021-08-12 15:40:54 +0200 |
---|---|---|
committer | Joris | 2021-08-12 15:40:54 +0200 |
commit | 20c2b0ff6a4f60854e86ef2c34f8113e897a11bb (patch) | |
tree | 959fcf3299ebb73ac1289ff2d7e8e9fb2d97ada1 /assets | |
parent | ec576464a8ef0943ea5a77f25659f89fbe377462 (diff) |
Hide income in statistics by default
Diffstat (limited to 'assets')
-rw-r--r-- | assets/main.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/assets/main.js b/assets/main.js index c22499e..aee4862 100644 --- a/assets/main.js +++ b/assets/main.js @@ -102,7 +102,8 @@ function show_statistics() { data: incomes.map(i => i.amount), fill: false, backgroundColor: '#222222', - borderColor: '#222222' + borderColor: '#222222', + hidden: true } ] |