Merge pull request #43 from jellyfin/fix/libraryToItemDetails

fix(library view cards): Fix going from library to item details
This commit is contained in:
Julien Machiels 2020-09-05 18:07:35 +02:00 committed by GitHub
commit 604f1e79cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template>
<v-card>
<v-card :to="`../item/${item.Id}`">
<v-img class="cardImage" :src="imageLink(item.Id)" />
<v-card-title>
<span>{{ item.Name }}</span>

View File

@ -7,7 +7,6 @@
<card
v-for="item in items"
:key="item.Id"
:to="`../item/${item.Id}`"
class="card mt-5"
:item="item"
/>