1
0

Fix trying to load the current tasks even when not logged in (Fixes #133)

This commit is contained in:
kolaente
2020-05-12 15:08:17 +02:00
parent cc46809639
commit 0dc4e6b95d
4 changed files with 19 additions and 15 deletions

View File

@ -1,6 +1,6 @@
<template>
<div class="content has-text-centered">
<TaskOverview
<ShowTasks
:start-date="startDate"
:end-date="endDate"
/>
@ -8,8 +8,13 @@
</template>
<script>
import ShowTasks from './ShowTasks'
export default {
name: "ShowTasksInRange",
name: 'ShowTasksInRange',
components: {
ShowTasks,
},
data() {
return {
startDate: new Date(this.$route.params.startDateUnix),