Allow for a lot more sites, and for scrolling

This commit is contained in:
Eli Ribble 2026-04-17 02:40:05 +00:00
parent 09fe773987
commit 1f8e6b698f
No known key found for this signature in database
2 changed files with 8 additions and 2 deletions

View file

@ -22,7 +22,7 @@ func Site(r *router) *siteR {
}
func (res *siteR) List(ctx context.Context, r *http.Request, user platform.User, query QueryParams) ([]*types.Site, *nhttp.ErrorWithStatus) {
limit := 20
limit := 1000
if query.Limit != nil {
limit = *query.Limit
}

View file

@ -1,3 +1,9 @@
<style scoped>
.col-left {
max-height: 1300px;
overflow-y: scroll;
}
</style>
<template>
<div class="container-fluid py-3">
<!-- Header -->
@ -5,7 +11,7 @@
<slot name="header"></slot>
</div>
<div class="row g-3">
<div class="col-xl-3">
<div class="col-xl-3 col-left">
<slot name="left"></slot>
</div>
<div class="col-xl-6">