Skip to content

Commit

Permalink
feat(vcd): implement usage tile in vdc dashboard
Browse files Browse the repository at this point in the history
ref: MANAGER-15243

Signed-off-by: Paul Dickerson <[email protected]>
  • Loading branch information
Paul Dickerson committed Dec 18, 2024
1 parent 263817e commit 13ab1a3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,6 @@ export default function DatacentreGenerationInformationTile({
</Description>
),
},
{
id: 'cpuCount',
label: tVdc('managed_vcd_vdc_vcpu_count'),
value: (
<Description>
{vcdDatacentre?.currentState.vCPUCount?.toString()}
</Description>
),
},
{
id: 'ramCount',
label: tVdc('managed_vcd_vdc_ram_count'),
Expand All @@ -76,17 +67,6 @@ export default function DatacentreGenerationInformationTile({
</Description>
),
},
{
id: 'vcpuSpeed',
label: tVdc('managed_vcd_vdc_vcpu_speed'),
value: (
<Description>
{tVdc('managed_vcd_vdc_vcpu_value', {
speed: vcdDatacentre?.currentState.vCPUSpeed,
})}
</Description>
),
},
{
id: 'interface',
label: t('managed_vcd_dashboard_management_interface'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export default function DatacentresGeneralInformationPage() {
vcdDatacentre={vcdDatacentre?.data}
vcdOrganization={vcdOrganization?.data}
/>
<DatacentreUsageTile vcdDatacentre={vcdDatacentre?.data} />
</div>
<Outlet />
</React.Suspense>
Expand Down

0 comments on commit 13ab1a3

Please sign in to comment.