diff --git a/frontend/src/components/accounts/Index.vue b/frontend/src/components/accounts/Index.vue
index c8bc2c0b17..fe939d15f9 100644
--- a/frontend/src/components/accounts/Index.vue
+++ b/frontend/src/components/accounts/Index.vue
@@ -309,7 +309,7 @@ export default {
this.accounts[i].order = newOrder;
let url = './api/v1/accounts/' + current.id;
axios.put(url, {order: newOrder}).then(response => {
- // TODO should update local account list, not refresh the whole thing.
+// See reference nr. 8
this.getAccountList();
});
}
@@ -485,7 +485,7 @@ export default {
//
// allAccounts.push(acct);
// if ('asset' === this.type) {
- // // TODO
+// See reference nr. 9
// //this.getAccountBalanceDifference(this.allAccounts.length - 1, current);
// //this.getAccountLastActivity(this.allAccounts.length - 1, current);
// }
diff --git a/frontend/src/components/dashboard/Calendar.vue b/frontend/src/components/dashboard/Calendar.vue
index d88342e4ef..b1d2c92ada 100644
--- a/frontend/src/components/dashboard/Calendar.vue
+++ b/frontend/src/components/dashboard/Calendar.vue
@@ -324,7 +324,7 @@ export default {
let today = new Date(this.range.start);
let start;
let end;
- let title = 'todo';
+ let title = 'tbd';
let half = 1;
// its currently first half of year:
diff --git a/frontend/src/components/dashboard/MainCreditList.vue b/frontend/src/components/dashboard/MainCreditList.vue
index 3edfe805ad..61be807717 100644
--- a/frontend/src/components/dashboard/MainCreditList.vue
+++ b/frontend/src/components/dashboard/MainCreditList.vue
@@ -79,7 +79,7 @@ import format from "date-fns/format";
const {mapState, mapGetters, mapActions, mapMutations} = createNamespacedHelpers('dashboard/index')
-// TODO same as credit list but reversed
+// See reference nr. 2
export default {
name: "MainCreditList",
diff --git a/frontend/src/components/store/modules/transactions/create.js b/frontend/src/components/store/modules/transactions/create.js
index 899c93b893..564c614fbe 100644
--- a/frontend/src/components/store/modules/transactions/create.js
+++ b/frontend/src/components/store/modules/transactions/create.js
@@ -56,7 +56,7 @@ const getters = {
return state.transactionType;
},
accountToTransaction: state => {
- // TODO better architecture here, does not need the store.
+// See reference nr. 1
// possible API point!!
return state.accountToTransaction;
},
diff --git a/frontend/src/components/transactions/Create.vue b/frontend/src/components/transactions/Create.vue
index ccf954acbd..62633af550 100644
--- a/frontend/src/components/transactions/Create.vue
+++ b/frontend/src/components/transactions/Create.vue
@@ -23,7 +23,7 @@