From c6baf6871fa13c67c1814b54d8a895a2a064a342 Mon Sep 17 00:00:00 2001 From: notfire Date: Fri, 15 Aug 2025 18:19:51 -0400 Subject: [PATCH] add ability to close reply box under posts that were deleted --- README.md | 2 ++ src/components/post_status_form/post_status_form.js | 3 ++- src/components/post_status_form/post_status_form.vue | 10 ++++++++++ src/components/settings_modal/tabs/general_tab.vue | 8 ++++++++ src/components/status/status.js | 2 ++ src/i18n/en.json | 2 ++ 6 files changed, 26 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0685d9ab..0b02e0cb 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,8 @@ - add option to prevent page from getting pushed when making a new post with streaming api enabled (similar to 3rd "for unreads" option) - add link on user card to open profiles in iceshrimp-fe - add option to open conversation view by clicking empty space in posts +- add ability to close the reply box under posts that were deleted + - also an option to close it automatically - add a script to download ruffle for flash support (requires python3 and requests library) - download by entering `tools/` and running `python3 download_ruffle.py` diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 25eac1d6..0617facc 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -243,7 +243,8 @@ const PostStatusForm = { activeEmojiInput: undefined, activeTextInput: undefined, subjectVisible: showSubject, - showingPostConfirmDialog: false + showingPostConfirmDialog: false, + notClosed: true } }, computed: { diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index ebab96ab..f6d38119 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -295,6 +295,16 @@ +
+ +