Skip to content

Commit 034ebe5

Browse files
committed
feat: nested drawer
1 parent 475b4ad commit 034ebe5

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

frontend/app/components/design/DesignDrawer.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ withDefaults(
33
defineProps<{
44
title: string
55
dismissible?: boolean
6+
nested?: boolean
67
}>(),
78
{
89
dismissible: true,
@@ -27,6 +28,7 @@ const close = () => {
2728
should-scale-background
2829
:set-background-color-on-scale="false"
2930
:handle="false"
31+
:nested
3032
:dismissible
3133
>
3234
<template #default>

frontend/app/components/standings/StandingsUnit.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ function selectTeamLead(userId: string) {
111111
<DesignDrawer
112112
v-model:open="showLeadSelector"
113113
:title="$t('unit.selectUnitLeader')"
114+
nested
114115
>
115116
<template #content>
116117
<div class="gap-list-section-gap flex flex-col">

0 commit comments

Comments
 (0)