WIP: feat: make today really today #1380

Closed
kergma-lw wants to merge 27 commits from fix/upcoming into fix/upcoming
1 changed files with 3 additions and 2 deletions
Showing only changes of commit ebe4e9fe3c - Show all commits

View File

@ -247,7 +247,8 @@ export default {
showTodaysTasks() {
const d = new Date()
this.cStartDate = new Date()
this.cEndDate = new Date(d.setDate(d.getDate() + 1))
this.cEndDate = new Date(d.setDate(d.getDate()))
this.cEndDate.setHours(23,59,0,0)
this.showOverdue = true
this.setDate()
},
@ -278,4 +279,4 @@ h3 {
.llama-cool {
margin-top: 2rem;
}
</style>
</style>