forked from FoundKeyGang/FoundKey
[Client] Fix bug
This commit is contained in:
parent
151f1fe3f7
commit
a92985122e
2 changed files with 2 additions and 2 deletions
|
@ -329,7 +329,7 @@
|
|||
|
||||
this.title = this.dateStringify(this.p.created_at);
|
||||
|
||||
this.url = CONFIG.url + '/' + this.p.user.username + '/' + this.p.id;
|
||||
this.url = `/${this.p.user.username}/${this.p.id}`;
|
||||
this.isDetailOpened = false;
|
||||
|
||||
this.on('mount', () => {
|
||||
|
|
|
@ -304,7 +304,7 @@
|
|||
this.isRepost = this.post.repost != null && this.post.text == null;
|
||||
this.p = this.isRepost ? this.post.repost : this.post;
|
||||
this.summary = this.getPostSummary(this.p);
|
||||
this.url = CONFIG.url + '/' + this.p.user.username + '/' + this.p.id
|
||||
this.url = `/${this.p.user.username}/${this.p.id}`;
|
||||
|
||||
this.on('mount', () => {
|
||||
if (this.p.text) {
|
||||
|
|
Loading…
Reference in a new issue