Fix channel tab case change.

This commit is contained in:
Kavin 2022-11-15 21:35:56 +00:00
parent 455edfcf7c
commit 601da0d460
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD

View File

@ -202,16 +202,16 @@ export default {
getTranslatedTabName(tabName) { getTranslatedTabName(tabName) {
let translatedTabName = tabName; let translatedTabName = tabName;
switch (tabName) { switch (tabName) {
case "Livestreams": case "livestreams":
translatedTabName = this.$t("titles.livestreams"); translatedTabName = this.$t("titles.livestreams");
break; break;
case "Playlists": case "playlists":
translatedTabName = this.$t("titles.playlists"); translatedTabName = this.$t("titles.playlists");
break; break;
case "Channels": case "channels":
translatedTabName = this.$t("titles.channels"); translatedTabName = this.$t("titles.channels");
break; break;
case "Shorts": case "shorts":
translatedTabName = this.$t("video.shorts"); translatedTabName = this.$t("video.shorts");
break; break;
default: default: