From a759378b4d82bcb3ff20590b1369cb86d3e0dc50 Mon Sep 17 00:00:00 2001
From: Astra <dr1ft.ast@gmail.com>
Date: Thu, 7 Jun 2018 05:18:54 -0400
Subject: [PATCH] more lint fixes

---
 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 2f40d690..0f8ebecd 100644
--- a/src/components/post_status_form/post_status_form.js
+++ b/src/components/post_status_form/post_status_form.js
@@ -263,7 +263,7 @@ const PostStatusForm = {
     },
     changeVis (visibility) {
       console.log(visibility)
-      Object.keys(this.vis).forEach(function (x) { this.vis[x].selected = x === visibility})
+      Object.keys(this.vis).forEach(function (x) { this.vis[x].selected = x === visibility })
       this.newStatus.visibility = visibility
     }
   }