Remove whitespaces next to like link in stream

closes #7088
This commit is contained in:
Steffen van Bergerem 2016-09-11 20:30:13 +02:00 committed by Benjamin Neff
parent a5f538b9ae
commit 4036a572af
2 changed files with 6 additions and 5 deletions

View file

@ -17,6 +17,7 @@
* Fixed missing sidebar background in the contacts tab [#7064](https://github.com/diaspora/diaspora/pull/7064)
* Fix tags URLs in hovercards [#7075](https://github.com/diaspora/diaspora/pull/7075)
* Fix 500 in html requests for post interactions [#7085](https://github.com/diaspora/diaspora/pull/7085)
* Remove whitespaces next to like link in stream [#7088](https://github.com/diaspora/diaspora/pull/7088)
## Features
* Deleted comments will be removed when loading more comments [#7045](https://github.com/diaspora/diaspora/pull/7045)

View file

@ -18,11 +18,11 @@
<span>{{t "stream.like"}}</span>
{{else}}
<a href="#" class="like" rel='nofollow'>
{{#if userLike}}
{{t "stream.unlike"}}
{{else}}
{{t "stream.like"}}
{{/if}}
{{~#if userLike~}}
{{~t "stream.unlike"~}}
{{~else~}}
{{~t "stream.like"~}}
{{~/if~}}
</a>
{{/if}}
·