From 1f8e6b698f7b734677589893f3d6c97e4d422205 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 17 Apr 2026 02:40:05 +0000 Subject: [PATCH] Allow for a lot more sites, and for scrolling --- resource/site.go | 2 +- ts/components/layout/ThreeColumn.vue | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/resource/site.go b/resource/site.go index 7c38704f..6b9b7921 100644 --- a/resource/site.go +++ b/resource/site.go @@ -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 } diff --git a/ts/components/layout/ThreeColumn.vue b/ts/components/layout/ThreeColumn.vue index 4ac17e9f..5ce24bb1 100644 --- a/ts/components/layout/ThreeColumn.vue +++ b/ts/components/layout/ThreeColumn.vue @@ -1,3 +1,9 @@ +