Compare commits

...

2 Commits

Author SHA1 Message Date
shamoon
f2fabc81d4 Fix: include array items for pagination openapi schema (#10682) 2025-08-25 13:25:54 -07:00
shamoon
f94c3eeea8 Fix: prevent scroll for view name in sidebar (#10676) 2025-08-24 05:13:09 -07:00
2 changed files with 2 additions and 1 deletions

View File

@@ -113,7 +113,7 @@
[disablePopover]="!slimSidebarEnabled" placement="end" container="body" triggers="mouseenter:mouseleave" [disablePopover]="!slimSidebarEnabled" placement="end" container="body" triggers="mouseenter:mouseleave"
popoverClass="popover-slim"> popoverClass="popover-slim">
<i-bs class="me-1" name="funnel"></i-bs> <i-bs class="me-1" name="funnel"></i-bs>
<span>&nbsp;<div class="d-inline-flex view-name"><span [class.text-truncate]="!slimSidebarEnabled">{{view.name}}</span></div> <span>&nbsp;<div class="d-inline-flex view-name"><span class="overflow-hidden" [class.text-truncate]="!slimSidebarEnabled">{{view.name}}</span></div>
@if (showSidebarCounts && !slimSidebarEnabled) { @if (showSidebarCounts && !slimSidebarEnabled) {
<span class="badge bg-info text-dark ms-2 d-inline">{{ savedViewService.getDocumentCount(view) }}</span> <span class="badge bg-info text-dark ms-2 d-inline">{{ savedViewService.getDocumentCount(view) }}</span>
} }

View File

@@ -88,6 +88,7 @@ class StandardPagination(PageNumberPagination):
response_schema["properties"]["all"] = { response_schema["properties"]["all"] = {
"type": "array", "type": "array",
"example": "[1, 2, 3]", "example": "[1, 2, 3]",
"items": {"type": "integer"},
} }
return response_schema return response_schema