Skip to content

Commit d5a2e74

Browse files
Class members add bug fix
1 parent 498f3b3 commit d5a2e74

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Caché Visual Editor (pre-alpha)
1+
# Caché Visual Editor <sup>(alpha)</sup>
22

33
A Web-based user interface for InterSystems Caché which allows to create and manage classes
44
literally without touching any code.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cache-visual-editor",
33
"printableName": "Cache Visual Editor",
44
"packageName": "VisualEditor",
5-
"version": "0.9.6",
5+
"version": "0.9.7",
66
"description": "Visual class editor for InterSystems Caché",
77
"main": "index.js",
88
"keywords": [

source/client/js/classEditor/class/member.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,9 @@ function enableMember ({
149149
(MANIFEST[isClass ? "Class" : classBlockName] || {})[propName] || {};
150150

151151
if (isClass && MEMBER_SECTIONS.indexOf(propName) !== -1) {
152-
classBlockElement.appendChild(getMemberSection(propName, classData));
152+
classBlockElement.appendChild(
153+
getMemberSection(propName, classData, serviceData)
154+
);
153155
updateGrid();
154156
return;
155157
}

0 commit comments

Comments
 (0)