Rebuild frontend

This commit is contained in:
James Cole
2021-03-13 21:32:24 +01:00
parent e113225b37
commit fc4d4a455b
12 changed files with 160 additions and 136 deletions

View File

@@ -120,7 +120,7 @@ export default {
this.expenses = [];
let startStr = this.start.toISOString().split('T')[0];
let endStr = this.end.toISOString().split('T')[0];
axios.get('./api/v1/insight/expense/date/basic?start=' + startStr + '&end=' + endStr)
axios.get('./api/v1/insight/expense/expense?start=' + startStr + '&end=' + endStr)
.then(response => {
// do something with response.
this.parseExpenses(response.data);