feat: corrected the color map for error % and added throughput unit (#7030)

This commit is contained in:
SagarRajput-7 2025-02-05 14:56:31 +05:30 committed by GitHub
parent 66adc7fbf9
commit 62064f136d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -244,7 +244,7 @@ function getColumns(data: RowData[]): TableColumnsType<RowData> {
},
},
{
title: 'THROUGHPUT',
title: 'THROUGHPUT (ops/s)',
dataIndex: 'throughput',
key: 'throughput',
ellipsis: {

View File

@ -116,8 +116,8 @@ export default function OverviewRightPanelGraph({
isDarkMode: false,
drawStyle: 'bars',
colorMapping: {
False: Color.BG_CHERRY_500,
True: Color.BG_FOREST_400,
True: Color.BG_CHERRY_500,
False: Color.BG_FOREST_400,
None: Color.BG_SLATE_200,
'Request Rate': Color.BG_ROBIN_500,
},