aboutsummaryrefslogtreecommitdiffstats
path: root/gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaTab.js
diff options
context:
space:
mode:
Diffstat (limited to 'gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaTab.js')
-rw-r--r--gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaTab.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaTab.js b/gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaTab.js
index 12f2e11..cfd402b 100644
--- a/gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaTab.js
+++ b/gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaTab.js
@@ -37,7 +37,7 @@ function contextSchemaTab_activate() {
$("#contextSchemaTableBody").find("tr:gt(0)").remove();
for (let value of data.messages) {
- var contextSchema = JSON.parse(value).apexContextSchema;
+ var contextSchema = JSON.parse(value);
var contextSchemaRow_tr = document.createElement("tr");
var contextSchemaid = contextSchema.key.name + ":" + contextSchema.key.version;