fix(ui): composer dialog layout broken (#2955)

This commit is contained in:
Joaquín Sánchez 2024-09-12 11:36:43 +02:00 committed by GitHub
parent 4061075dde
commit 01ffb1a3e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -63,13 +63,15 @@ function handleFavouritedBoostedByClose() {
</ModalDialog>
<ModalDialog
v-model="isPublishDialogOpen"
max-w-180 flex flex-col
max-w-180 flex w-full
@close="handlePublishClose"
>
<!-- This `w-0` style is used to avoid overflow problems in flex layoutsso don't remove it unless you know what you're doing -->
<PublishWidgetList
v-if="dialogDraftKey"
:draft-key="dialogDraftKey" expanded flex-1 w-0
:draft-key="dialogDraftKey"
expanded
class="flex-1"
@published="handlePublished"
/>
</ModalDialog>