diff --git a/src/renderer/components/ft-list-channel/ft-list-channel.js b/src/renderer/components/ft-list-channel/ft-list-channel.js index 82ab55064c0ba..e647f1f54f824 100644 --- a/src/renderer/components/ft-list-channel/ft-list-channel.js +++ b/src/renderer/components/ft-list-channel/ft-list-channel.js @@ -82,9 +82,14 @@ export default defineComponent({ this.channelName = this.data.author this.id = this.data.authorId this.subscriberCount = this.data.subCount - this.videoCount = this.data.videoCount - this.formattedVideoCount = formatNumber(this.data.videoCount) this.formattedSubscriberCount = formatNumber(this.data.subCount) + this.handle = this.data.channelHandle + if (this.handle != null) { + this.videoCount = null + } else { + this.videoCount = this.data.videoCount + this.formattedVideoCount = formatNumber(this.data.videoCount) + } this.description = this.data.description } } diff --git a/src/renderer/components/ft-list-channel/ft-list-channel.vue b/src/renderer/components/ft-list-channel/ft-list-channel.vue index 66c36296ba9fe..37c9df4d7d630 100644 --- a/src/renderer/components/ft-list-channel/ft-list-channel.vue +++ b/src/renderer/components/ft-list-channel/ft-list-channel.vue @@ -30,12 +30,6 @@
- - {{ $tc('Global.Counts.Subscriber Count', subscriberCount, {count: formattedSubscriberCount}) }} - + + {{ $tc('Global.Counts.Subscriber Count', subscriberCount, {count: formattedSubscriberCount}) }} + + + {{ $tc('Global.Counts.Video Count', videoCount, {count: formattedVideoCount}) }}