From 93380918968b2ddded82015ab197393506b43696 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Sun, 19 Feb 2017 08:22:37 +0900
Subject: [PATCH] [Clinet] Fix bug

---
 src/web/app/mobile/tags/post-form.tag | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/web/app/mobile/tags/post-form.tag b/src/web/app/mobile/tags/post-form.tag
index 6dc50150a3..8ee92f33e1 100644
--- a/src/web/app/mobile/tags/post-form.tag
+++ b/src/web/app/mobile/tags/post-form.tag
@@ -2,7 +2,8 @@
 	<header>
 		<div>
 			<button class="cancel" onclick={ cancel }><i class="fa fa-times"></i></button>
-			<div><span class="text-count { over: refs.text.value.length > 1000 }">{ 1000 - refs.text.value.length }</span>
+			<div>
+				<span if={ refs.text } class="text-count { over: refs.text.value.length > 1000 }">{ 1000 - refs.text.value.length }</span>
 				<button class="submit" onclick={ post }>投稿</button>
 			</div>
 		</div>