commit: 338bdd93de3e6471c276306b9078e4d02040357d
parent ada054189dcef157e12b23ff476ae12c5a7960e4
Author: Henry Jameson <me@hjkos.com>
Date: Sat, 4 Jan 2025 02:04:16 +0200
how did this get in here??
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/components/status/status.vue b/src/components/status/status.vue
@@ -292,7 +292,7 @@
v-if="!isPreview"
:status-id="status.parent_visible && status.in_reply_to_status_id"
class="reply-to-popover"
- style="min-width: 0"
+ style="min-width: 0;"
:class="{ '-strikethrough': !status.parent_visible }"
>
<button
@@ -598,13 +598,15 @@
class="status-container reply-form"
>
<PostStatusForm
+ ref="postStatusForm"
class="reply-body"
:reply-to="status.id"
:attentions="status.attentions"
:replied-user="status.user"
:copy-message-scope="status.visibility"
:subject="replySubject"
- @posted="toggleReplying"
+ @posted="doToggleReplying"
+ @can-close="doToggleReplying"
/>
</div>
</template>