summaryrefslogtreecommitdiff
path: root/src/client/app
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-02-17 00:28:41 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-02-17 00:28:41 +0900
commit562bb5842b5737ef7eb71069899e01a263c4f4d8 (patch)
tree0fe9739b9eb854688a7ecbc8309a22c51d90248d /src/client/app
parentミュートワードで正規表現を使えるように (diff)
downloadmisskey-562bb5842b5737ef7eb71069899e01a263c4f4d8.tar.gz
misskey-562bb5842b5737ef7eb71069899e01a263c4f4d8.tar.bz2
misskey-562bb5842b5737ef7eb71069899e01a263c4f4d8.zip
[Client] Improve featured notes page
Diffstat (limited to 'src/client/app')
-rw-r--r--src/client/app/desktop/views/deck/deck.featured-column.vue1
-rw-r--r--src/client/app/desktop/views/home/featured.vue1
-rw-r--r--src/client/app/mobile/views/pages/featured.vue1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/client/app/desktop/views/deck/deck.featured-column.vue b/src/client/app/desktop/views/deck/deck.featured-column.vue
index 77d19e54c9..78a5a7e3f5 100644
--- a/src/client/app/desktop/views/deck/deck.featured-column.vue
+++ b/src/client/app/desktop/views/deck/deck.featured-column.vue
@@ -44,6 +44,7 @@ export default Vue.extend({
this.$root.api('notes/featured', {
limit: 20,
}).then(notes => {
+ notes.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
res(notes);
this.fetching = false;
this.$emit('loaded');
diff --git a/src/client/app/desktop/views/home/featured.vue b/src/client/app/desktop/views/home/featured.vue
index 5b480d6455..07f9088c2d 100644
--- a/src/client/app/desktop/views/home/featured.vue
+++ b/src/client/app/desktop/views/home/featured.vue
@@ -30,6 +30,7 @@ export default Vue.extend({
this.$root.api('notes/featured', {
limit: 20
}).then(notes => {
+ notes.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
this.notes = notes;
this.fetching = false;
diff --git a/src/client/app/mobile/views/pages/featured.vue b/src/client/app/mobile/views/pages/featured.vue
index 0479bf73f8..9122673be1 100644
--- a/src/client/app/mobile/views/pages/featured.vue
+++ b/src/client/app/mobile/views/pages/featured.vue
@@ -38,6 +38,7 @@ export default Vue.extend({
this.$root.api('notes/featured', {
limit: 20
}).then(notes => {
+ notes.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
this.notes = notes;
this.fetching = false;