From 0a458d261c14b19a818954a2ebafb757d5091cbd Mon Sep 17 00:00:00 2001 From: novenary Date: Tue, 17 Sep 2024 12:27:56 +0300 Subject: [PATCH] post_status_form: inherit language from parent If I'm replying to a post in Klingon, chances are I'm going to write in Klingon. This reduces friction for properly marking post language in a conversation. --- src/components/post_status_form/post_status_form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index bfd1acb6..5ad1709c 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -180,7 +180,7 @@ const PostStatusForm = { poll: this.statusPoll || {}, mediaDescriptions: this.statusMediaDescriptions || {}, visibility: this.statusScope || this.suggestedVisibility(), - language: this.statusLanguage || postLanguage, + language: this.statusLanguage || this.suggestedLanguage(), contentType: statusContentType } }