summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-03-28 09:49:47 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-03-28 09:49:47 +0900
commit29f5e5ca3274404999a156b85e743679631c5217 (patch)
tree96b5fbf94c4f63452b72f4635cbf22110ebb2f5f
parentenhance(frontend): ファイルアップロード処理のリファクタと... (diff)
downloadsharkey-29f5e5ca3274404999a156b85e743679631c5217.tar.gz
sharkey-29f5e5ca3274404999a156b85e743679631c5217.tar.bz2
sharkey-29f5e5ca3274404999a156b85e743679631c5217.zip
fix(frontend): classic uiが表示できない
Fix #15715
-rw-r--r--packages/frontend/src/ui/classic.vue9
1 files changed, 7 insertions, 2 deletions
diff --git a/packages/frontend/src/ui/classic.vue b/packages/frontend/src/ui/classic.vue
index f51577fc68..c984cde342 100644
--- a/packages/frontend/src/ui/classic.vue
+++ b/packages/frontend/src/ui/classic.vue
@@ -16,8 +16,9 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
<main class="main" @contextmenu.stop="onContextmenu">
- <div class="content" style="container-type: inline-size;">
- <RouterView/>
+ <div class="content">
+ <StackingRouterView v-if="prefer.s['experimental.stackingRouterView']"/>
+ <RouterView v-else/>
</div>
</main>
@@ -318,4 +319,8 @@ onMounted(() => {
pointer-events: none;
}
}
+
+.content {
+ height: 100%;
+}
</style>