fix(stage-pages,stage-ui): type issue

This commit is contained in:
Neko Ayaka
2026-01-18 14:55:18 +08:00
parent ca1c708c80
commit d92375fe77
2 changed files with 2 additions and 2 deletions
@@ -90,7 +90,7 @@ onMounted(() => updateThemeColor())
<!-- Content -->
<div class="max-h-[calc(100%-40px)] px-3 py-0 sm:max-h-[calc(100%-56px)] 2xl:max-w-screen-2xl md:py-0 xl:px-4" flex="~ col" mx-auto h-full>
<PageHeader
:title="routeHeaderMetadata?.title"
:title="routeHeaderMetadata?.title || ''"
:subtitle="routeHeaderMetadata?.subtitle"
:disable-back-button="route.path === '/settings'"
/>
@@ -52,7 +52,7 @@ const settings = computed(() => {
>
<template #item="{ item }">
<IconItem
:title="item.title"
:title="item.title || ''"
:description="item.description"
:icon="item.icon"
:to="item.to"