Fix trying to load the current tasks even when not logged in (Fixes #133)
This commit is contained in:
@ -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),
|
||||
|
Reference in New Issue
Block a user