1
0
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:
Christopher Kolstad 2022-08-31 15:15:03 +02:00 committed by GitHub
parent 6af8f7356f
commit b827056f51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ export const AvailableAddons = ({
return (
<PageContent
isLoading={loading}
header={<PageHeader title="Available addons" />}
header={<PageHeader title={`Available addons (${rows.length})`} />}
>
<Table {...getTableProps()}>
<SortableTableHeader headerGroups={headerGroups} />

View File

@ -167,7 +167,7 @@ export const ConfiguredAddons = () => {
return (
<PageContent
isLoading={loading}
header={<PageHeader title="Configured addons" />}
header={<PageHeader title={`Configured addons (${rows.length})`} />}
sx={theme => ({ marginBottom: theme.spacing(2) })}
>
<Table {...getTableProps()}>