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:
parent
709a890bd8
commit
4c5b869140
@ -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
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user