fix(ui): bind attributes to PublishWidgetList list (#2952)

This commit is contained in:
Joaquín Sánchez 2024-09-11 17:43:30 +02:00 committed by GitHub
parent dd6fab86ee
commit dbf743afd9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -37,6 +37,7 @@ function isFirstItem(index: number) {
<template v-if="isHydrated && currentUser">
<PublishWidget
v-for="(_, index) in threadItems" :key="`${draftKey}-${index}`"
v-bind="$attrs"
:draft-key="draftKey"
:draft-item-index="index"
:expanded="isFirstItem(index) ? expanded : true"

View file

@ -88,7 +88,7 @@ onReactivated(() => {
<PublishWidgetList
v-if="currentUser"
ref="publishWidget"
border="y base"
class="border-y border-base"
:draft-key="replyDraft!.key"
:initial="replyDraft!.draft"
@published="refreshContext()"