Fix trying to load the current tasks even when not logged in (Fixes #133)
This commit is contained in:
parent
cc46809639
commit
0dc4e6b95d
4 changed files with 19 additions and 15 deletions
|
|
@ -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 a new issue