Added voting. Improved comments.

This commit is contained in:
2023-06-25 19:52:00 +02:00
parent 754a89b913
commit f42daa2f83
29 changed files with 916 additions and 154 deletions

View File

@@ -6,7 +6,7 @@
class="link"
>Create new shelf</a></li>
<li v-if="!user"><a
<li v-if="!me"><a
href="/account/login"
class="link"
>Log in</a></li>
@@ -32,6 +32,6 @@
<script setup>
import { usePageContext } from '../../renderer/usePageContext';
const { user, pageData } = usePageContext();
const { me, pageData } = usePageContext();
const { shelves } = pageData;
</script>