Compare commits
3 Commits
e7a3cb3d7d
...
8446f59740
| Author | SHA1 | Date | |
|---|---|---|---|
| 8446f59740 | |||
| 3a04b8321c | |||
| 037a9c2d87 |
12
BUGS
12
BUGS
@@ -1,3 +1,15 @@
|
||||
* when I delete a comp_set && it is the current compare_to, then need to reset compare_to to 'Nothing'
|
||||
|
||||
* with future bills - recalculate bills button blows away growth!
|
||||
- BUT, I think just loading the bills page puts it back -- need to validate and fix if so
|
||||
|
||||
* with new vertical lay-out, the autosetting of the bill_type when I click add
|
||||
bill no longer sets to the tab I am viewing
|
||||
-- also keeps going back to Gas for some reason?
|
||||
|
||||
* can put in dumb dates - DO SOME INPUT VALIDATION, *sigh*
|
||||
- e.g. 0026-02-19 for a Gas bill
|
||||
|
||||
* kayo bills are wrong in between normal bills
|
||||
|
||||
* added an electricity bill by accident for 2018, that kills lots :(
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
|
||||
<script src="https://code.highcharts.com/highcharts.js"></script>
|
||||
<script src="https://code.highcharts.com/modules/mouse-wheel-zoom.js"></script>
|
||||
<script src="https://code.highcharts.com/modules/annotations.js"></script>
|
||||
<script src="https://code.highcharts.com/modules/accessibility.js"></script>
|
||||
<script src="https://code.highcharts.com/themes/adaptive.js"></script>
|
||||
@@ -358,7 +359,7 @@
|
||||
|
||||
// Highcharts configuration
|
||||
Highcharts.chart('graph', {
|
||||
chart: { type: 'line' },
|
||||
chart: { type: 'line', zooming: { type: 'x' } },
|
||||
colors: [ 'orange' ],
|
||||
title: { text: 'Savings Over Time' },
|
||||
xAxis: {
|
||||
@@ -385,7 +386,7 @@
|
||||
{% if COMP %}
|
||||
// Highcharts configuration
|
||||
Highcharts.chart('graph-comp', {
|
||||
chart: { type: 'line' },
|
||||
chart: { type: 'line', zooming: { type: 'x' } },
|
||||
colors: [
|
||||
'orange', // Custom color 1
|
||||
'cyan', // Custom color 2
|
||||
|
||||
Reference in New Issue
Block a user