Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
msalihaltun committed Jun 18, 2021
1 parent 1ee0a22 commit 0536f3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sbgnviz.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/utilities/sbgnml-to-json-converter-factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ module.exports = function () {
Object.keys( propMap ).forEach( function( propName ) {
var fieldName = propMap[ propName ];
var fieldVal = memberStyle[ fieldName ];
if ( fieldVal ) {
if ( fieldVal !== undefined && fieldVal !== null ) {
var details = propDetails && propDetails[ propName ];
if ( details ) {
if ( details[ 'converter' ] ) {
Expand Down

0 comments on commit 0536f3e

Please sign in to comment.