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) * 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 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) * 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 ## Features
* Deleted comments will be removed when loading more comments [#7045](https://github.com/diaspora/diaspora/pull/7045) * 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> <span>{{t "stream.like"}}</span>
{{else}} {{else}}
<a href="#" class="like" rel='nofollow'> <a href="#" class="like" rel='nofollow'>
{{#if userLike}} {{~#if userLike~}}
{{t "stream.unlike"}} {{~t "stream.unlike"~}}
{{else}} {{~else~}}
{{t "stream.like"}} {{~t "stream.like"~}}
{{/if}} {{~/if~}}
</a> </a>
{{/if}} {{/if}}
· ·