Skip to content

Commit cd72aef

Browse files
committed
Fix Low TPS insights showing entities instead of CPU
1 parent c5b28c4 commit cd72aef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Plan/react/dashboard/src/components/cards/server/insights/PerformanceInsightsCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const PerformanceInsightsCard = ({data}) => {
2020
<Datapoint name={t('html.label.averageChunks')} icon={faMap} color="tps-low-spikes"
2121
value={data.low_tps_chunks}/>
2222
<Datapoint name={t('html.label.averageCpuUsage')} icon={faTachometerAlt} color="tps-low-spikes"
23-
value={data.low_tps_entities}/>
23+
value={data.low_tps_cpu}/>
2424
<Datapoint name={t('html.label.averageTps')} icon={faTachometerAlt} color="tps-low-spikes"
2525
value={data.low_tps_tps}/>
2626
<Datapoint name={t('html.label.msptAverage')} icon={faStopwatch} color="tps-low-spikes"

0 commit comments

Comments
 (0)