summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/channel.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/frontend/src/pages/channel.vue')
-rw-r--r--packages/frontend/src/pages/channel.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/pages/channel.vue b/packages/frontend/src/pages/channel.vue
index 10cdb70a51..611ae6feca 100644
--- a/packages/frontend/src/pages/channel.vue
+++ b/packages/frontend/src/pages/channel.vue
@@ -258,10 +258,10 @@ const headerTabs = computed(() => [{
icon: 'ti ti-search',
}]);
-definePageMetadata(computed(() => channel.value ? {
- title: channel.value.name,
+definePageMetadata(() => ({
+ title: channel.value ? channel.value.name : i18n.ts.channel,
icon: 'ti ti-device-tv',
-} : null));
+}));
</script>
<style lang="scss" module>