From bebe8ec887ba67c51353e09d7758819b117bf62d Mon Sep 17 00:00:00 2001
From: takayamaki <fsgiko@gmail.com>
Date: Fri, 19 Oct 2018 07:00:19 +0900
Subject: [PATCH] fix: initial state of PrivacyDropdown is should not be null
 (#9008)

---
 .../mastodon/features/compose/components/privacy_dropdown.js    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/javascript/mastodon/features/compose/components/privacy_dropdown.js b/app/javascript/mastodon/features/compose/components/privacy_dropdown.js
index 7b5482f05b..5698765d94 100644
--- a/app/javascript/mastodon/features/compose/components/privacy_dropdown.js
+++ b/app/javascript/mastodon/features/compose/components/privacy_dropdown.js
@@ -164,7 +164,7 @@ class PrivacyDropdown extends React.PureComponent {
 
   state = {
     open: false,
-    placement: null,
+    placement: 'bottom',
   };
 
   handleToggle = ({ target }) => {
-- 
GitLab