mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-25 12:45:17 +00:00
fix: comment card error
This commit is contained in:
parent
5227bfd14c
commit
8aa29e4361
2 changed files with 4 additions and 9 deletions
|
@ -100,14 +100,9 @@ export default {
|
|||
this.$vuetube.back
|
||||
);
|
||||
|
||||
this.$vuetube.addBackAction(
|
||||
() => {
|
||||
this.search = false;
|
||||
},
|
||||
() => {
|
||||
return this.search;
|
||||
}
|
||||
);
|
||||
this.$vuetube.addBackAction(() => {
|
||||
this.search = false;
|
||||
}, this.search);
|
||||
|
||||
// --- External URL Handling --- //
|
||||
CapacitorApp.addListener("appUrlOpen", (event) => {
|
||||
|
|
|
@ -156,7 +156,7 @@
|
|||
v-if="loaded && video.commentData"
|
||||
@click="showComments = !showComments"
|
||||
>
|
||||
<v-card flat class="background comment-renderer">
|
||||
<v-card flat class="background comment-renderer pa-0">
|
||||
<v-card-text class="comment-count keep-spaces">
|
||||
<template v-for="text in video.commentData.headerText.runs">
|
||||
<template v-if="text.bold">
|
||||
|
|
Loading…
Reference in a new issue