Skip to content
Snippets Groups Projects
Commit 84c4c1d9 authored by syuilo⭐️'s avatar syuilo⭐️ Committed by GitHub
Browse files

Fix bug

parent 6cc6e0e6
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,8 @@
</div>
<div class="main" if={ !fetching }>
<button class="read-more" if={ p.reply_to && p.reply_to.reply_to_id && context == null } onclick={ loadContext } disabled={ loadingContext }>
<i class="fa fa-ellipsis-v" if={ !loadingContext }></i>
<i class="fa fa-spinner fa-pulse" if={ loadingContext }></i>
<i class="fa fa-ellipsis-v" if={ !contextFetching }></i>
<i class="fa fa-spinner fa-pulse" if={ contextFetching }></i>
</button>
<div class="context">
<virtual each={ post in context }>
......@@ -441,14 +441,14 @@
};
this.loadContext = () => {
this.loadingContext = true;
this.contextFetching = true;
// Fetch context
this.api('posts/context', {
post_id: this.p.reply_to_id
}).then(context => {
this.update({
loadContext: false,
contextFetching: false,
context: context.reverse()
});
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment