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 @@