diff options
author | ramverma <ram.krishna.verma@ericsson.com> | 2018-09-18 15:39:34 +0100 |
---|---|---|
committer | ramverma <ram.krishna.verma@ericsson.com> | 2018-09-18 15:40:43 +0100 |
commit | 024a4dd745b2f6ec9f15082d711e61994c95cdad (patch) | |
tree | 76ed596933bf6e7f1de945813345cf83e24ba6ba /client/client-editor | |
parent | 565922bbe60fc0a9d015ce00ef8733e6ddfe905c (diff) |
Fix issue in apex client editor
Change-Id: If12bd289d9c8a22b86b4a9c9bff21c1a9d42a3d1
Issue-ID: POLICY-954
Signed-off-by: ramverma <ram.krishna.verma@ericsson.com>
Diffstat (limited to 'client/client-editor')
-rw-r--r-- | client/client-editor/src/main/resources/webapp/js/ApexPageControl.js | 4 |
1 files changed, 2 insertions, 2 deletions
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 { |