mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
[Client] Fix bug
This commit is contained in:
parent
fa5c4a48f8
commit
53583996d5
1 changed files with 1 additions and 4 deletions
|
@ -9,7 +9,7 @@
|
|||
<span class="username">@{ post.user.username }</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<a class="time" href={ url }>
|
||||
<a class="time" href={ '/' + this.post.user.username + '/' + this.post.id }>
|
||||
<mk-time time={ post.created_at }></mk-time>
|
||||
</a>
|
||||
</div>
|
||||
|
@ -120,9 +120,6 @@
|
|||
this.mixin('user-preview');
|
||||
|
||||
this.post = this.opts.post;
|
||||
|
||||
this.url = CONFIG.url + '/' + this.post.user.username + '/' + this.post.id;
|
||||
|
||||
this.title = this.dateStringify(this.post.created_at);
|
||||
|
||||
this.on('mount', () => {
|
||||
|
|
Loading…
Add table
Reference in a new issue