Fix video recommendations for Invidious API and alter text when viewing comment replies
This commit is contained in:
parent
56fd7fbaa5
commit
7927e334ad
|
@ -111,6 +111,7 @@ export default Vue.extend({
|
|||
|
||||
if (typeof (this.data.descriptionHtml) !== 'undefined' ||
|
||||
typeof (this.data.index) !== 'undefined' ||
|
||||
typeof (this.data.authorId) !== 'undefined' ||
|
||||
typeof (this.data.publishedText) !== 'undefined' ||
|
||||
typeof (this.data.authorThumbnails) === 'object'
|
||||
) {
|
||||
|
|
|
@ -60,7 +60,9 @@
|
|||
class="commentMoreReplies"
|
||||
@click="getCommentReplies(index)"
|
||||
>
|
||||
View {{ comment.numReplies }} replies
|
||||
<span v-if="!comment.showReplies">View</span>
|
||||
<span v-else>Hide</span>
|
||||
{{ comment.numReplies }} replies
|
||||
</p>
|
||||
<div
|
||||
v-if="comment.showReplies"
|
||||
|
|
Loading…
Reference in New Issue