summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/web/app/desktop/tags/search-posts.tag2
-rw-r--r--src/web/app/mobile/tags/search-posts.tag2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/web/app/desktop/tags/search-posts.tag b/src/web/app/desktop/tags/search-posts.tag
index 2acb675d44..f7ec85a4fe 100644
--- a/src/web/app/desktop/tags/search-posts.tag
+++ b/src/web/app/desktop/tags/search-posts.tag
@@ -80,7 +80,7 @@
return this.api('posts/search', Object.assign({}, parse(this.query), {
limit: this.limit,
offset: this.offset
- }).then(posts => {
+ })).then(posts => {
this.update({
moreLoading: false
});
diff --git a/src/web/app/mobile/tags/search-posts.tag b/src/web/app/mobile/tags/search-posts.tag
index b37ba69e85..3e3c034f21 100644
--- a/src/web/app/mobile/tags/search-posts.tag
+++ b/src/web/app/mobile/tags/search-posts.tag
@@ -36,7 +36,7 @@
return this.api('posts/search', Object.assign({}, parse(this.query), {
limit: this.limit,
offset: this.offset
- });
+ }));
};
</script>
</mk-search-posts>