Skip to content

Commit d7a9213

Browse files
committed
Revert "fix(app): disable portal globally (#47)"
This reverts commit b5ac204.
1 parent 0d77460 commit d7a9213

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/app/src/app.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,10 @@ router.beforeEach((to, from) => {
7777

7878
<template>
7979
<div :class="ui.colorMode.value">
80-
<UApp :portal="false">
80+
<UApp
81+
:toaster="{ portal: false }"
82+
:modal="{ portal: false }"
83+
>
8184
<AppLayout :open="ui.isOpen.value">
8285
<RouterView v-slot="{ Component }">
8386
<Transition

src/app/src/components/AppLayout.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function onLeave(el: Element, done: () => void) {
4949
>
5050
<div
5151
v-if="open"
52-
class="fixed top-0 bottom-0 left-0 border-r border-default flex flex-col max-w-full bg-default"
52+
class="fixed top-0 bottom-0 left-0 overflow-y-auto border-r border-default flex flex-col max-w-full bg-default"
5353
:style="sidebarStyle"
5454
>
5555
<AppHeader />

0 commit comments

Comments
 (0)