Allow for a lot more sites, and for scrolling
This commit is contained in:
parent
09fe773987
commit
1f8e6b698f
2 changed files with 8 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue