Skip to content

Commit

Permalink
Bump up version to 0.6.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jingjingbic committed Aug 14, 2024
1 parent fa52f30 commit b782955
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/cx2js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js4cytoscape/cx2js",
"version": "0.6.10",
"version": "0.6.11",
"description": "A cx to Cytoscape JS utility",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/cx2js/src/cy_network_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ class CyNetworkUtils {

rawCXtoNiceCX(rawCX) {

var niceCX = {};
niceCX['edges'] = {};
niceCX['nodes'] = {};
var niceCX = {'edges': {},
'nodes':{}
};

for (var i = 0; i < rawCX.length; i++) {
var fragment = rawCX[i];
Expand Down

0 comments on commit b782955

Please sign in to comment.