Fix arguments for hevercardable helper
We should pass person object to the hovecrardable helper. In the current case `this` is the status message, not the status author. So, let's pass `author` instead of `this`.
This commit is contained in:
parent
f12546bb78
commit
88f502236a
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@
|
|||
{{#with root}}
|
||||
<div class="bd">
|
||||
<div>
|
||||
<a href="/people/{{author.guid}}" class="author {{{hovercardable this}}}">{{author.name}}</a>
|
||||
<a href="/people/{{author.guid}}" class="author {{{hovercardable author}}}">{{author.name}}</a>
|
||||
|
||||
<span class="details grey">
|
||||
-
|
||||
|
|
|
|||
Loading…
Reference in a new issue