chore: completely move logic of ShowTasksInRange component to ShowTasks and remove it

This commit is contained in:
kolaente 2022-02-05 21:14:40 +01:00
parent 43e83350bd
commit ecf679d8e1
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
3 changed files with 3 additions and 12 deletions

View file

@ -1,6 +1,6 @@
<template>
<div class="is-max-width-desktop has-text-left ">
<h3 class="mb-2">
<h3 class="mb-2 title">
{{ pageTitle }}
</h3>
<p v-if="!showAll" class="show-tasks-options">

View file

@ -1,9 +0,0 @@
<template>
<div class="content has-text-centered">
<ShowTasks/>
</div>
</template>
<script lang="ts" setup>
import ShowTasks from './ShowTasks.vue'
</script>