Compare commits

...
This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.

1 Commits
main ... main

Author SHA1 Message Date
Sergey Shkuratov ebe4e9fe3c Make today really today. 2022-01-14 18:08:08 +02:00
1 changed files with 3 additions and 2 deletions

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>