Skip to content

Commit

Permalink
Replace hard-coded date on page for creating transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
range-of-motion committed Dec 3, 2023
1 parent 160627d commit 604b90e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Navigation from '../../components/Navigation.vue';
const router = getCurrentInstance().proxy.$router;
const type = ref('earning');
const happened_on = ref('2023-11-02');
const happened_on = ref(new Date().toJSON().slice(0, 10));
const description = ref('');
const amount = ref(10.00);
Expand Down

0 comments on commit 604b90e

Please sign in to comment.