1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-19 17:52:45 +02:00

chore: show release templates in license info in the UI (#10563)

https://linear.app/unleash/issue/2-3823/show-release-templates-in-license-info-in-ui

Shows release templates in license info in the UI.

<img width="1173" height="687" alt="image"
src="https://github.com/user-attachments/assets/b93cb510-282d-4027-bd39-2269ec138cc6"
/>
This commit is contained in:
Nuno Góis 2025-08-28 15:23:48 +01:00 committed by GitHub
parent 709a890bd8
commit 4c5b869140
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 0 deletions

View File

@ -103,6 +103,14 @@ export const License = () => {
{license.seats} {license.seats}
</StyledPropertyDetails> </StyledPropertyDetails>
</StyledDataCollectionPropertyRow> </StyledDataCollectionPropertyRow>
<StyledDataCollectionPropertyRow>
<StyledPropertyName>
Release templates
</StyledPropertyName>
<StyledPropertyDetails>
{license.releaseTemplates}
</StyledPropertyDetails>
</StyledDataCollectionPropertyRow>
<StyledDataCollectionPropertyRow> <StyledDataCollectionPropertyRow>
<StyledPropertyName> <StyledPropertyName>
Expire at Expire at

View File

@ -25,6 +25,7 @@ export interface License {
instanceName: string; instanceName: string;
plan: string; plan: string;
seats: number; seats: number;
releaseTemplates: number;
expireAt: Date; expireAt: Date;
}; };
loading: boolean; loading: boolean;