From 0e2a7e099792ba60377d23e70e4991c2c81d5f2a Mon Sep 17 00:00:00 2001 From: zeppi Date: Mon, 12 Apr 2021 12:11:26 -0400 Subject: [PATCH] fix posts not showing up on desktop --- static/app-strings.json | 1 + ui/component/publishForm/view.jsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/static/app-strings.json b/static/app-strings.json index 1d6b125f0..9c7d280bf 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -1782,6 +1782,7 @@ "Craft an epic post clearly explaining... whatever.": "Craft an epic post clearly explaining... whatever.", "waiting": "waiting", "%viewer_count% currently %viewer_state%": "%viewer_count% currently %viewer_state%", + "Choose Replay": "Choose Replay", "More from %claim_name%": "More from %claim_name%", "--end--": "--end--" } diff --git a/ui/component/publishForm/view.jsx b/ui/component/publishForm/view.jsx index ef397be49..965fd42af 100644 --- a/ui/component/publishForm/view.jsx +++ b/ui/component/publishForm/view.jsx @@ -145,7 +145,7 @@ function PublishForm(props: Props) { if (mode === PUBLISH_MODES.LIVESTREAM) { return enableLivestream; } - return false; + return true; } });