Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/app/src/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,7 @@ router.beforeEach((to, from) => {

<template>
<div :class="ui.colorMode.value">
<UApp
:toaster="{ portal: false }"
:modal="{ portal: false }"
>
<UApp :portal="false">
<AppLayout :open="ui.isOpen.value">
<RouterView v-slot="{ Component }">
<Transition
Expand Down
2 changes: 1 addition & 1 deletion src/app/src/components/AppLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function onLeave(el: Element, done: () => void) {
>
<div
v-if="open"
class="fixed top-0 bottom-0 left-0 overflow-y-auto border-r border-default flex flex-col max-w-full bg-default"
class="fixed top-0 bottom-0 left-0 border-r border-default flex flex-col max-w-full bg-default"
:style="sidebarStyle"
>
<AppHeader />
Expand Down
Loading