Skip to content
This repository was archived by the owner on Jan 9, 2022. It is now read-only.

Commit 224cc2a

Browse files
committed
fix: make height prop required GDialogContent
1 parent e3476ec commit 224cc2a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/GDialogContent.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default defineComponent({
4242
4343
height: {
4444
type: [String, Number],
45-
default: 'auto',
45+
required: true,
4646
},
4747
4848
maxWidth: {
@@ -135,6 +135,7 @@ export default defineComponent({
135135
136136
&--scrollable {
137137
display: flex;
138+
flex-direction: column;
138139
}
139140
140141
&--fullscreen {

0 commit comments

Comments
 (0)