fix(ui): composer dialog layout broken (#2955)
This commit is contained in:
parent
4061075dde
commit
01ffb1a3e1
|
@ -63,13 +63,15 @@ function handleFavouritedBoostedByClose() {
|
||||||
</ModalDialog>
|
</ModalDialog>
|
||||||
<ModalDialog
|
<ModalDialog
|
||||||
v-model="isPublishDialogOpen"
|
v-model="isPublishDialogOpen"
|
||||||
max-w-180 flex flex-col
|
max-w-180 flex w-full
|
||||||
@close="handlePublishClose"
|
@close="handlePublishClose"
|
||||||
>
|
>
|
||||||
<!-- This `w-0` style is used to avoid overflow problems in flex layouts,so don't remove it unless you know what you're doing -->
|
<!-- This `w-0` style is used to avoid overflow problems in flex layouts,so don't remove it unless you know what you're doing -->
|
||||||
<PublishWidgetList
|
<PublishWidgetList
|
||||||
v-if="dialogDraftKey"
|
v-if="dialogDraftKey"
|
||||||
:draft-key="dialogDraftKey" expanded flex-1 w-0
|
:draft-key="dialogDraftKey"
|
||||||
|
expanded
|
||||||
|
class="flex-1"
|
||||||
@published="handlePublished"
|
@published="handlePublished"
|
||||||
/>
|
/>
|
||||||
</ModalDialog>
|
</ModalDialog>
|
||||||
|
|
Loading…
Reference in a new issue