Update local API modules and use new variable for related channels
This commit is contained in:
parent
6130ca3d95
commit
884e0967df
|
@ -89,11 +89,11 @@
|
||||||
"vue-router": "^3.5.2",
|
"vue-router": "^3.5.2",
|
||||||
"vuex": "^3.6.2",
|
"vuex": "^3.6.2",
|
||||||
"youtube-suggest": "^1.1.2",
|
"youtube-suggest": "^1.1.2",
|
||||||
"yt-channel-info": "^3.0.1",
|
"yt-channel-info": "^3.0.2",
|
||||||
"yt-dash-manifest-generator": "1.1.0",
|
"yt-dash-manifest-generator": "1.1.0",
|
||||||
"yt-trending-scraper": "^2.0.1",
|
"yt-trending-scraper": "^2.0.1",
|
||||||
"ytdl-core": "^4.10.1",
|
"ytdl-core": "^4.11.0",
|
||||||
"ytpl": "^2.2.3",
|
"ytpl": "^2.3.0",
|
||||||
"ytsr": "^3.6.0"
|
"ytsr": "^3.6.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
@ -139,9 +139,9 @@
|
||||||
v-for="(channel, index) in relatedChannels"
|
v-for="(channel, index) in relatedChannels"
|
||||||
:key="index"
|
:key="index"
|
||||||
:channel-name="channel.author || channel.channelName"
|
:channel-name="channel.author || channel.channelName"
|
||||||
:channel-id="channel.authorId"
|
:channel-id="channel.channelId"
|
||||||
:channel-thumbnail="channel.authorThumbnails[channel.authorThumbnails.length - 1].url"
|
:channel-thumbnail="channel.authorThumbnails[channel.authorThumbnails.length - 1].url"
|
||||||
@click="goToChannel(channel.authorId)"
|
@click="goToChannel(channel.channelId)"
|
||||||
/>
|
/>
|
||||||
</ft-flex-box>
|
</ft-flex-box>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue