From 496acf55987e347db95b49e4d86dcd0bb2b4a74c Mon Sep 17 00:00:00 2001 From: Anthony DeBarros Date: Tue, 12 Mar 2024 01:20:09 -0400 Subject: [PATCH] Polish up the system_stats not installed message. --- web/pgadmin/dashboard/static/js/Dashboard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pgadmin/dashboard/static/js/Dashboard.jsx b/web/pgadmin/dashboard/static/js/Dashboard.jsx index d8127a469..63c931f73 100644 --- a/web/pgadmin/dashboard/static/js/Dashboard.jsx +++ b/web/pgadmin/dashboard/static/js/Dashboard.jsx @@ -797,7 +797,7 @@ function Dashboard({ .then((res) => { const data = res.data; if(data['ss_present'] == false){ - setSsMsg(gettext('System stats extension is not installed. You can install the extension in a database using the "CREATE EXTENSION system_stats;" SQL command. Reload the pgAdmin once you installed.')); + setSsMsg(gettext('The system_stats extension is not installed. You can install the extension in a database using the "CREATE EXTENSION system_stats;" SQL command. Reload pgAdmin once it is installed.')); setLdid(0); } else { setSsMsg('installed');