mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
Fix minor loading bug.
This commit is contained in:
parent
940ea569c7
commit
deae2b6ade
1 changed files with 12 additions and 8 deletions
20
ui/src/utils.ts
vendored
20
ui/src/utils.ts
vendored
|
@ -613,11 +613,13 @@ export function createPostLikeFindRes(data: PostResponse, posts: Array<Post>) {
|
|||
}
|
||||
|
||||
export function createPostLikeRes(data: PostResponse, post: Post) {
|
||||
post.score = data.post.score;
|
||||
post.upvotes = data.post.upvotes;
|
||||
post.downvotes = data.post.downvotes;
|
||||
if (data.post.my_vote !== null) {
|
||||
post.my_vote = data.post.my_vote;
|
||||
if (post) {
|
||||
post.score = data.post.score;
|
||||
post.upvotes = data.post.upvotes;
|
||||
post.downvotes = data.post.downvotes;
|
||||
if (data.post.my_vote !== null) {
|
||||
post.my_vote = data.post.my_vote;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -629,9 +631,11 @@ export function editPostFindRes(data: PostResponse, posts: Array<Post>) {
|
|||
}
|
||||
|
||||
export function editPostRes(data: PostResponse, post: Post) {
|
||||
post.url = data.post.url;
|
||||
post.name = data.post.name;
|
||||
post.nsfw = data.post.nsfw;
|
||||
if (post) {
|
||||
post.url = data.post.url;
|
||||
post.name = data.post.name;
|
||||
post.nsfw = data.post.nsfw;
|
||||
}
|
||||
}
|
||||
|
||||
export function commentsToFlatNodes(
|
||||
|
|
Loading…
Reference in a new issue