From 4c5b869140cc643be321eb77160feed35ee2c26f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Thu, 28 Aug 2025 15:23:48 +0100 Subject: [PATCH] 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. image --- frontend/src/component/admin/license/License.tsx | 8 ++++++++ frontend/src/hooks/api/getters/useLicense/useLicense.ts | 1 + 2 files changed, 9 insertions(+) diff --git a/frontend/src/component/admin/license/License.tsx b/frontend/src/component/admin/license/License.tsx index f0b5f7b90e..d25eb5b299 100644 --- a/frontend/src/component/admin/license/License.tsx +++ b/frontend/src/component/admin/license/License.tsx @@ -103,6 +103,14 @@ export const License = () => { {license.seats} + + + Release templates + + + {license.releaseTemplates} + + Expire at diff --git a/frontend/src/hooks/api/getters/useLicense/useLicense.ts b/frontend/src/hooks/api/getters/useLicense/useLicense.ts index f24b4f8e0d..21a9924957 100644 --- a/frontend/src/hooks/api/getters/useLicense/useLicense.ts +++ b/frontend/src/hooks/api/getters/useLicense/useLicense.ts @@ -25,6 +25,7 @@ export interface License { instanceName: string; plan: string; seats: number; + releaseTemplates: number; expireAt: Date; }; loading: boolean;