From 3c6f07fc8cccdcbbd1826ec42e34c423cf433105 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Sat, 28 Jun 2025 21:38:54 +0900 Subject: feat: モデログを検索できるように MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../frontend/src/components/MkPaginationControl.vue | 18 ++++++++++++++++-- packages/frontend/src/pages/admin/modlog.vue | 10 ++++++++-- 2 files changed, 24 insertions(+), 4 deletions(-) (limited to 'packages/frontend') diff --git a/packages/frontend/src/components/MkPaginationControl.vue b/packages/frontend/src/components/MkPaginationControl.vue index ce19005504..8eab987d2a 100644 --- a/packages/frontend/src/components/MkPaginationControl.vue +++ b/packages/frontend/src/components/MkPaginationControl.vue @@ -9,12 +9,22 @@ SPDX-License-Identifier: AGPL-3.0-only - + + + + + + (); -const search = ref(false); +const searchOpened = ref(false); const filterOpened = ref(props.filterOpened); const order = defineModel<'newest' | 'oldest'>('order', { @@ -60,6 +70,10 @@ const order = defineModel<'newest' | 'oldest'>('order', { const date = defineModel('date', { default: null, }); + +const q = defineModel('q', { + default: null, +});