1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

chore: rename to seats used (#8993)

Instead of licensed users/used, we will use seats used.
This commit is contained in:
Jaanus Sellin 2024-12-17 12:39:54 +02:00 committed by GitHub
parent 4fb5f6a96c
commit fdb20e94e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ export const LicensedUsersSidebar = ({
>
<ModalContentContainer>
<HeaderRow>
<ModalHeader>Licensed seats</ModalHeader>
<ModalHeader>Seats used</ModalHeader>
</HeaderRow>
<WidgetContainer>
<Row>

View File

@ -15,7 +15,7 @@ const placeholderData: LicensedUsersSchema = {
export const useLicensedUsers = () => {
const { data, refetch, loading, error } = useApiGetter<LicensedUsersSchema>(
formatApiPath(path),
() => fetcher(formatApiPath(path), 'Licensed users'),
() => fetcher(formatApiPath(path), 'Seats used'),
);
return { data: data || placeholderData, refetch, loading, error };

View File

@ -662,7 +662,7 @@ export function registerPrometheusMetrics(
const licensedUsers = createGauge({
name: 'licensed_users',
help: 'The number of licensed users.',
help: 'The number of seats used.',
});
const addonEventsHandledCounter = createCounter({