From a90f9d275cce5bb02bb555175603f1bf3ec91359 Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Tue, 24 May 2022 17:52:25 +0100 Subject: [PATCH] Fixed "Update support address" button showing error on success no issue - the API response is now empty so returning the parsed response is null/undefined resulting in `` showing a failure state - switched to returning an enforced `true` value, if there was an error that's handled by the try/catch --- ghost/admin/app/components/modal-portal-settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/admin/app/components/modal-portal-settings.js b/ghost/admin/app/components/modal-portal-settings.js index b8048ed558..3db392b796 100644 --- a/ghost/admin/app/components/modal-portal-settings.js +++ b/ghost/admin/app/components/modal-portal-settings.js @@ -390,7 +390,7 @@ export default ModalComponent.extend({ } }); // this.toggleProperty('showSupportAddressConfirmation'); - return response; + return true; } catch (e) { // Failed to send email, retry return false;