Skip to content
Snippets Groups Projects
Commit f784b204 authored by permcu's avatar permcu
Browse files

Remove outer card

parent afd51c38
No related branches found
No related tags found
2 merge requests!352Draft: Resolve "Add dialog with each lesson's students",!350Resolve "Add simple course book list"
Pipeline #168150 failed
......@@ -7,26 +7,24 @@
:enable-edit="false"
>
<template #default="{ items }">
<v-card class="my-6 mx-3">
<v-list-item
v-for="day in groupDocsByDay(items)"
two-line
>
<v-list-item-content>
<v-list-item-title>{{ $d(day[0], "short") }}</v-list-item-title>
<v-list>
<!-- I know slice copies the array. But show me something better. -->
<v-list-item v-for="doc in day.slice(1)">
<v-card class="my-2">
<documentation
:documentation="doc"
/>
</v-card>
</v-list-item>
</v-list>
</v-list-item-content>
</v-list-item>
</v-card>
<v-list-item
v-for="day in groupDocsByDay(items)"
two-line
>
<v-list-item-content>
<v-list-item-title>{{ $d(day[0], "short") }}</v-list-item-title>
<v-list>
<!-- I know slice copies the array. But show me something better. -->
<v-list-item v-for="doc in day.slice(1)">
<v-card class="my-2">
<documentation
:documentation="doc"
/>
</v-card>
</v-list-item>
</v-list>
</v-list-item-content>
</v-list-item>
</template>
</c-r-u-d-iterator>
</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment