From 5ef4a52bbdc1fb8487263071bc9ab08b85badda0 Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 3 Nov 2020 10:54:41 +0900 Subject: [PATCH] Improve usability of emoji page --- src/client/pages/instance/emojis.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/client/pages/instance/emojis.vue b/src/client/pages/instance/emojis.vue index 1cb0915195..9001a5c5eb 100644 --- a/src/client/pages/instance/emojis.vue +++ b/src/client/pages/instance/emojis.vue @@ -5,7 +5,7 @@
-
+
{{ $t('addEmoji') }} {{ $t('search') }} @@ -24,7 +24,7 @@
-
+
{{ $t('search') }} {{ $t('host') }} @@ -83,14 +83,14 @@ export default defineComponent({ host: '', pagination: { endpoint: 'admin/emoji/list', - limit: 15, + limit: 30, params: computed(() => ({ query: (this.query && this.query !== '') ? this.query : null })) }, remotePagination: { endpoint: 'admin/emoji/list-remote', - limit: 15, + limit: 30, params: computed(() => ({ query: (this.queryRemote && this.queryRemote !== '') ? this.queryRemote : null, host: (this.host && this.host !== '') ? this.host : null