File tree 2 files changed +7
-0
lines changed 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,18 @@ type PaginationHeaderProps = {
7
7
limit : number ;
8
8
totalRecords : number | undefined ;
9
9
currentOffsetStart : number | undefined ;
10
+
11
+ // Temporary escape hatch until Workspaces can be switched over to using
12
+ // PaginationContainer
13
+ className ?: string ;
10
14
} ;
11
15
12
16
export const PaginationHeader : FC < PaginationHeaderProps > = ( {
13
17
paginationUnitLabel,
14
18
limit,
15
19
totalRecords,
16
20
currentOffsetStart,
21
+ className,
17
22
} ) => {
18
23
const theme = useTheme ( ) ;
19
24
@@ -32,6 +37,7 @@ export const PaginationHeader: FC<PaginationHeaderProps> = ({
32
37
color : theme . palette . text . primary ,
33
38
} ,
34
39
} }
40
+ className = { className }
35
41
>
36
42
{ totalRecords !== undefined ? (
37
43
< >
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ export const WorkspacesPageView = ({
162
162
limit = { limit }
163
163
totalRecords = { count }
164
164
currentOffsetStart = { ( page - 1 ) * limit + 1 }
165
+ css = { { paddingBottom : "0" } }
165
166
/>
166
167
) }
167
168
</ TableToolbar >
You can’t perform that action at this time.
0 commit comments