Skip to content

Commit fa8ffcb

Browse files
committed
Remove Hz info from UI
1 parent 4aaa850 commit fa8ffcb

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

ui/src/components/view/InfoCard.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,7 @@
129129
<div class="resource-detail-item__label">{{ $t('label.cpu') }}</div>
130130
<div class="resource-detail-item__details">
131131
<a-icon type="appstore" />
132-
<span v-if="resource.cputotal">{{ resource.cputotal }}</span>
133-
<span v-else>{{ resource.cpunumber }} CPU x {{ parseFloat(resource.cpuspeed / 1000.0).toFixed(2) }} Ghz</span>
132+
<span>{{ resource.cpunumber }} CPU</span>
134133
</div>
135134
<div>
136135
<span v-if="resource.cpuused">

ui/src/views/compute/wizard/ComputeOfferingSelection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export default {
171171
return {
172172
key: item.id,
173173
name: item.name,
174-
cpu: cpuNumberValue.length > 0 ? `${cpuNumberValue} CPU x ${cpuSpeedValue} Ghz` : '',
174+
cpu: cpuNumberValue.length > 0 ? `${cpuNumberValue} CPU` : '',
175175
ram: ramValue.length > 0 ? `${ramValue} MB` : '',
176176
disabled: disabled
177177
}

0 commit comments

Comments
 (0)