diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-02-19 08:22:37 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-02-19 08:22:37 +0900 |
| commit | 93380918968b2ddded82015ab197393506b43696 (patch) | |
| tree | cc4e93a08a657d8edfa4ca7a76a2962af75b2a3e /src | |
| parent | [Client] Refactor: Improve readability (diff) | |
| download | misskey-93380918968b2ddded82015ab197393506b43696.tar.gz misskey-93380918968b2ddded82015ab197393506b43696.tar.bz2 misskey-93380918968b2ddded82015ab197393506b43696.zip | |
[Clinet] Fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/web/app/mobile/tags/post-form.tag | 3 |
1 files changed, 2 insertions, 1 deletions
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> |