We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffbc3df commit 8046277Copy full SHA for 8046277
package.json
@@ -2,7 +2,7 @@
2
"name": "cache-visual-editor",
3
"printableName": "Cache Visual Editor",
4
"packageName": "VisualEditor",
5
- "version": "0.8.4",
+ "version": "0.8.5",
6
"description": "Visual class editor for InterSystems Caché",
7
"main": "index.js",
8
"keywords": [
source/cache/REST/Informer.cls
@@ -141,7 +141,9 @@ ClassMethod List() As %Status
141
continue
142
}
143
144
- write data.$toJSON()
+
145
+ write "" // fixes the strange $toJSON() issue: it does not output content properly without this string
146
+ do data.$toJSON()
147
148
return $$$OK
149
0 commit comments