File tree 2 files changed +16
-3
lines changed
routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.schedules 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export function PaginationControls({
28
28
disabledClassName = "opacity-30 cursor-default"
29
29
>
30
30
< ButtonContent variant = "minimal/small" LeadingIcon = { ChevronLeftIcon } >
31
- Previous
31
+ Prev
32
32
</ ButtonContent >
33
33
</ LinkDisabled >
34
34
Original file line number Diff line number Diff line change @@ -201,9 +201,22 @@ export default function Page() {
201
201
possibleEnvironments = { possibleEnvironments }
202
202
possibleTasks = { possibleTasks }
203
203
/>
204
+ < div className = "flex items-center justify-end gap-x-2" >
205
+ < PaginationControls
206
+ currentPage = { currentPage }
207
+ totalPages = { totalPages }
208
+ showPageNumbers = { false }
209
+ />
210
+ </ div >
211
+ </ div >
212
+
213
+ < div className = "h-fit max-h-full overflow-x-auto" >
214
+ < SchedulesTable schedules = { schedules } hasFilters = { hasFilters } />
215
+ < div className = "flex justify-end py-3" >
216
+ < PaginationControls currentPage = { currentPage } totalPages = { totalPages } />
217
+ </ div >
204
218
</ div >
205
219
206
- < SchedulesTable schedules = { schedules } hasFilters = { hasFilters } />
207
220
< div className = "flex w-full items-start justify-between" >
208
221
< div className = "flex h-fit w-full items-center gap-4 border-t border-grid-bright bg-background-bright p-[0.86rem] pl-4" >
209
222
< SimpleTooltip
@@ -359,7 +372,7 @@ function SchedulesTable({
359
372
const { scheduleParam } = useParams ( ) ;
360
373
361
374
return (
362
- < Table containerClassName = "max-h-full h-fit overflow-x-auto border-b border-grid-bright" >
375
+ < Table >
363
376
< TableHeader >
364
377
< TableRow >
365
378
< TableHeaderCell > ID</ TableHeaderCell >
You can’t perform that action at this time.
0 commit comments