From 024a4dd745b2f6ec9f15082d711e61994c95cdad Mon Sep 17 00:00:00 2001 From: ramverma Date: Tue, 18 Sep 2018 15:39:34 +0100 Subject: Fix issue in apex client editor Change-Id: If12bd289d9c8a22b86b4a9c9bff21c1a9d42a3d1 Issue-ID: POLICY-954 Signed-off-by: ramverma --- client/client-editor/src/main/resources/webapp/js/ApexPageControl.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client') diff --git a/client/client-editor/src/main/resources/webapp/js/ApexPageControl.js b/client/client-editor/src/main/resources/webapp/js/ApexPageControl.js index 71c2614fb..d81b0fe0d 100644 --- a/client/client-editor/src/main/resources/webapp/js/ApexPageControl.js +++ b/client/client-editor/src/main/resources/webapp/js/ApexPageControl.js @@ -183,7 +183,7 @@ function pageControl_successStatus(data) { $('#statusString').html(data.result); $("#statusMessageTable").empty(); - if (data.OK) { + if (data.ok) { $('#statusString').css("color", "green"); $('#ebInlineMessage-iconHolder-icon').attr("class", "ebIcon ebIcon_big ebIcon_tick"); } else { @@ -208,7 +208,7 @@ function pageControl_status(data) { $('#statusString').html(data.result); $("#statusMessageTable").empty(); - if (data.OK) { + if (data.ok) { $('#statusString').css("color", "green"); $('#ebInlineMessage-iconHolder-icon').attr("class", "ebIcon ebIcon_big ebIcon_tick"); } else { -- cgit 1.2.3-korg