mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
feat: Add count to list of addons (#2024)
This commit is contained in:
parent
6af8f7356f
commit
b827056f51
@ -136,7 +136,7 @@ export const AvailableAddons = ({
|
|||||||
return (
|
return (
|
||||||
<PageContent
|
<PageContent
|
||||||
isLoading={loading}
|
isLoading={loading}
|
||||||
header={<PageHeader title="Available addons" />}
|
header={<PageHeader title={`Available addons (${rows.length})`} />}
|
||||||
>
|
>
|
||||||
<Table {...getTableProps()}>
|
<Table {...getTableProps()}>
|
||||||
<SortableTableHeader headerGroups={headerGroups} />
|
<SortableTableHeader headerGroups={headerGroups} />
|
||||||
|
@ -167,7 +167,7 @@ export const ConfiguredAddons = () => {
|
|||||||
return (
|
return (
|
||||||
<PageContent
|
<PageContent
|
||||||
isLoading={loading}
|
isLoading={loading}
|
||||||
header={<PageHeader title="Configured addons" />}
|
header={<PageHeader title={`Configured addons (${rows.length})`} />}
|
||||||
sx={theme => ({ marginBottom: theme.spacing(2) })}
|
sx={theme => ({ marginBottom: theme.spacing(2) })}
|
||||||
>
|
>
|
||||||
<Table {...getTableProps()}>
|
<Table {...getTableProps()}>
|
||||||
|
Loading…
Reference in New Issue
Block a user