From 097080ba97afad5efbf71ffdd3519feb2350e4f9 Mon Sep 17 00:00:00 2001 From: Pravesh Sharma Date: Thu, 13 Apr 2023 13:02:12 +0530 Subject: [PATCH] Ensure that save button is enabled when registering new server fails due to API error. #6075 Incorporated review comments --- web/pgadmin/static/js/SchemaView/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pgadmin/static/js/SchemaView/index.jsx b/web/pgadmin/static/js/SchemaView/index.jsx index 2cc105dbf..03f21a18f 100644 --- a/web/pgadmin/static/js/SchemaView/index.jsx +++ b/web/pgadmin/static/js/SchemaView/index.jsx @@ -802,7 +802,7 @@ function SchemaDialogView({ } disabled={!dirty || saving} className={classes.buttonMargin}> {gettext('Reset')} - + {props.customSaveBtnName ? gettext(props.customSaveBtnName) : gettext('Save')}