Skip to content

Commit 0fbe94f

Browse files
Merge pull request #122 from SergioRius/patch-1
Fix undefined error when clicking on "Instance Details"
2 parents 96f760b + f620b8a commit 0fbe94f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nodes/uiblib.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1141,7 +1141,7 @@ module.exports = {
11411141

11421142
nodeKeys.sort().forEach( item => {
11431143
let info = node[item]
1144-
if ( info!== null && info.constructor.name === 'Object' ) info = JSON.stringify(info)
1144+
if ( info != null && info.constructor.name === 'Object' ) info = JSON.stringify(info)
11451145
page += `
11461146
<tr>
11471147
<th>${item}</th>

0 commit comments

Comments
 (0)