diff --git a/magic-editor/src/console/src/components/common/magic-structure-array.vue b/magic-editor/src/console/src/components/common/magic-structure-array.vue
index ef50d116..43950745 100644
--- a/magic-editor/src/console/src/components/common/magic-structure-array.vue
+++ b/magic-editor/src/console/src/components/common/magic-structure-array.vue
@@ -26,6 +26,7 @@
"{{value.replace(/"/g, "\"")}}"
{{value}}
{{value}}
+ null
{{value}}
diff --git a/magic-editor/src/console/src/components/common/magic-structure-object.vue b/magic-editor/src/console/src/components/common/magic-structure-object.vue
index 28867037..acaab255 100644
--- a/magic-editor/src/console/src/components/common/magic-structure-object.vue
+++ b/magic-editor/src/console/src/components/common/magic-structure-object.vue
@@ -12,6 +12,7 @@
"{{value.replace(/"/g, "\"")}}"
{{value}}
{{value}}
+ null
{{value}}
}
@@ -28,6 +29,7 @@
"{{value.replace(/"/g, "\"")}}"
{{value}}
{{value}}
+ null
{{value}}
diff --git a/magic-editor/src/console/src/components/common/magic-structure.vue b/magic-editor/src/console/src/components/common/magic-structure.vue
index 15cfad9e..87b2d2c7 100644
--- a/magic-editor/src/console/src/components/common/magic-structure.vue
+++ b/magic-editor/src/console/src/components/common/magic-structure.vue
@@ -1,6 +1,7 @@
{{ data }}
+ null
diff --git a/magic-editor/src/console/src/components/layout/magic-debug.vue b/magic-editor/src/console/src/components/layout/magic-debug.vue
index 4e7d244e..816403ab 100644
--- a/magic-editor/src/console/src/components/layout/magic-debug.vue
+++ b/magic-editor/src/console/src/components/layout/magic-debug.vue
@@ -50,27 +50,6 @@ export default {
},
variables() {
return this.info && this.info.ext && this.info.ext.variables || []
- /*return [{
- name: "11",
- type: "java.lang.String",
- value: "abcd"
- },{
- name: "11",
- type: "xx.xx.xx",
- value: `[{
- "ne" : {
- "xx" :1
- },
- "name": "xx",
- "b" : true,
- "i" : 1,
- "arr" : ${JSON.stringify(new Array(301).fill(1).map((it,index) => index))},
- "arr1" : [{
- "name": 123
- },2,3,4,5,6,7,8,9,10],
- "f" : 123.456
- }]`
- }]*/
}
}
}