From 8f0eae7a25fcc37c362575b1d76c6252f10f2b3b Mon Sep 17 00:00:00 2001 From: Gung Wah <41157464+kresnaputra@users.noreply.github.com> Date: Thu, 1 Apr 2021 22:00:20 +0800 Subject: [PATCH] [FIX] Can't change status (#3018) Co-authored-by: Diego Mello --- app/views/StatusView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/StatusView.js b/app/views/StatusView.js index cd71ff379..f703b8e0a 100644 --- a/app/views/StatusView.js +++ b/app/views/StatusView.js @@ -65,7 +65,7 @@ class StatusView extends React.Component { super(props); const { statusText } = props.user; - this.state = { statusText, loading: false }; + this.state = { statusText: statusText || '', loading: false }; this.setHeader(); }