From 71647c886d4e4d0bb33e2f9a3a7142f944313012 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Wed, 17 Aug 2022 12:34:47 +0100 Subject: [PATCH] Fix label. --- web/pgadmin/dashboard/static/js/Graphs.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pgadmin/dashboard/static/js/Graphs.jsx b/web/pgadmin/dashboard/static/js/Graphs.jsx index f8aa15120..10ccf126b 100644 --- a/web/pgadmin/dashboard/static/js/Graphs.jsx +++ b/web/pgadmin/dashboard/static/js/Graphs.jsx @@ -99,7 +99,7 @@ export function statsReducer(state, action) { const chartsDefault = { 'session_stats': {'Total': [], 'Active': [], 'Idle': []}, 'tps_stats': {'Transactions': [], 'Commits': [], 'Rollbacks': []}, - 'ti_stats': {'Inserts': [], 'Updates': [], 'Delete': []}, + 'ti_stats': {'Inserts': [], 'Updates': [], 'Deletes': []}, 'to_stats': {'Fetched': [], 'Returned': []}, 'bio_stats': {'Reads': [], 'Hits': []}, };