diff --git a/mateclaw-ui/src/views/Security/Activity/index.vue b/mateclaw-ui/src/views/Security/Activity/index.vue index b7a1ad7d..461d2f81 100644 --- a/mateclaw-ui/src/views/Security/Activity/index.vue +++ b/mateclaw-ui/src/views/Security/Activity/index.vue @@ -231,7 +231,9 @@ const events = ref([]) const loading = ref(false) const page = ref(1) // Element Plus pagination owns this ref; @size-change writes through. -const pageSize = ref(30) +// Default 20 to match the smallest entry in :page-sizes — anything +// off-list leaves the size dropdown showing a blank current value. +const pageSize = ref(20) const total = ref(0) const filters = reactive({ source: '', action: '', resourceType: '' }) const showMoreFilters = ref(false)