diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-01-28 12:21:35 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-01-28 12:21:35 +0900 |
| commit | bb6b912aef48c00c407cbea9606aeb5cf0d54833 (patch) | |
| tree | 34b8317755249c5dfc71640aecb7ade7021ab910 /packages/client/src | |
| parent | refactor (diff) | |
| download | sharkey-bb6b912aef48c00c407cbea9606aeb5cf0d54833.tar.gz sharkey-bb6b912aef48c00c407cbea9606aeb5cf0d54833.tar.bz2 sharkey-bb6b912aef48c00c407cbea9606aeb5cf0d54833.zip | |
fix
Diffstat (limited to 'packages/client/src')
| -rw-r--r-- | packages/client/src/components/ui/modal.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/components/ui/modal.vue b/packages/client/src/components/ui/modal.vue index c8bf348fdc..e2f6996b16 100644 --- a/packages/client/src/components/ui/modal.vue +++ b/packages/client/src/components/ui/modal.vue @@ -25,7 +25,7 @@ function getFixedContainer(el: Element | null): Element | null { } } -type ModalTypes = 'popup' | 'dialog' | 'drawer'; +type ModalTypes = 'popup' | 'dialog' | 'dialog:top' | 'drawer'; const props = withDefaults(defineProps<{ manualShowing?: boolean; |