mirror of
https://github.com/VueTubeApp/VueTube
synced 2025-01-06 07:31:12 +00:00
search'n'tabs fix, channel card link from search fix
This commit is contained in:
parent
d37f9b12ee
commit
7c76cf2802
3 changed files with 3 additions and 7 deletions
|
@ -1,9 +1,5 @@
|
|||
<template>
|
||||
<v-card
|
||||
class="entry gridVideoRenderer background"
|
||||
:to="`/watch?v=${video.videoId}`"
|
||||
flat
|
||||
>
|
||||
<v-card class="entry gridVideoRenderer background" to="/channel" flat>
|
||||
<div id="details">
|
||||
<a
|
||||
:href="
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
/>
|
||||
</div>
|
||||
<div id="details">
|
||||
<a :href="channelUrl" class="avatar-link pl-2 pt-2">
|
||||
<a href="/channel" class="avatar-link pl-2 pt-2">
|
||||
<v-img class="avatar-thumbnail" :src="channelIcon" />
|
||||
</a>
|
||||
<v-card-text class="video-info pt-2" v-emoji>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
<!-- channel-tabs -->
|
||||
<v-tabs
|
||||
v-if="$route.path.includes('/channel')"
|
||||
v-if="$route.path.includes('/channel') && !search"
|
||||
mobile-breakpoint="0"
|
||||
style="
|
||||
position: fixed;
|
||||
|
|
Loading…
Reference in a new issue