diff --git a/frontend/src/component/menu/Footer/ApiDetails/ApiDetails.tsx b/frontend/src/component/menu/Footer/ApiDetails/ApiDetails.tsx index e0583926de..97a437705e 100644 --- a/frontend/src/component/menu/Footer/ApiDetails/ApiDetails.tsx +++ b/frontend/src/component/menu/Footer/ApiDetails/ApiDetails.tsx @@ -17,13 +17,17 @@ export const ApiDetails = (props: IApiDetailsProps): ReactElement => { const { environment, billing } = props.uiConfig; const updateNotification = formatUpdateNotification(props.uiConfig); - const buildInfo = buildNumber ? ({buildNumber}) : ''; + const displayVersion = buildNumber ? ( + build {buildNumber} + ) : ( + version + ); return (
{name} {environment ? environment : ''} - {billing === 'pay-as-you-go' ? ' Pay-as-You-Go' : ''} {version}{' '} - {buildInfo} + {billing === 'pay-as-you-go' ? ' Pay-as-You-Go' : ''}{' '} + {displayVersion}
@@ -46,7 +45,6 @@ exports[`renders correctly with ui-config 1`] = ` test 1.1.0 -
@@ -78,7 +76,6 @@ exports[`renders correctly with versionInfo 1`] = ` 1.2.3 - Upgrade available - Latest Enterprise release: 1.2.4 @@ -115,7 +112,6 @@ exports[`renders correctly without uiConfig 1`] = ` 1.1.0 -
diff --git a/frontend/src/component/menu/Footer/Footer.tsx b/frontend/src/component/menu/Footer/Footer.tsx index 416c7bc798..b498f9b50e 100644 --- a/frontend/src/component/menu/Footer/Footer.tsx +++ b/frontend/src/component/menu/Footer/Footer.tsx @@ -178,19 +178,6 @@ export const Footer: VFC = () => {
Frontend SDKs - - - Unleash Proxy - - } - /> -
@@ -255,26 +254,6 @@ exports[`should render DrawerMenu 1`] = `