mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-13 03:13:41 +08:00
fix(activity): align initial pageSize with page-sizes options (30→20)
This commit is contained in:
parent
a3f25d9b03
commit
191eebca95
@ -231,7 +231,9 @@ const events = ref<ActivityEvent[]>([])
|
||||
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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user