We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d838789 commit 2efe49bCopy full SHA for 2efe49b
site/src/pages/WorkspacesPage/WorkspacesPageView.tsx
@@ -114,18 +114,16 @@ export const WorkspacesPageView: FC<
114
filter={filter}
115
/>
116
117
- <Maybe condition={count !== undefined}>
118
- <PaginationWidget
119
- prevLabel=""
120
- nextLabel=""
121
- onPrevClick={onPrevious}
122
- onNextClick={onNext}
123
- onPageClick={onGoToPage}
124
- numRecords={count}
125
- activePage={page}
126
- numRecordsPerPage={limit}
127
- />
128
- </Maybe>
+ <PaginationWidget
+ prevLabel=""
+ nextLabel=""
+ onPrevClick={onPrevious}
+ onNextClick={onNext}
+ onPageClick={onGoToPage}
+ numRecords={count}
+ activePage={page}
+ numRecordsPerPage={limit}
+ />
129
</Margins>
130
)
131
}
0 commit comments