Skip to content

Commit 19171e2

Browse files
Tabular view root node relation fix
1 parent 70f7027 commit 19171e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iknow-entity-browser",
3-
"version": "0.5.5",
3+
"version": "0.5.6",
44
"description": "Visualizer for iKnow entities",
55
"main": "gulpfile.babel.js",
66
"scripts": {

src/static/js/tabular/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ onSelectionUpdate((selection) => {
1919
row.insertCell(2).textContent = node.entities[0].score;
2020
row.insertCell(3).textContent = node.entities[0].frequency;
2121
row.insertCell(4).textContent = node.entities[0].spread;
22-
(c = row.insertCell(5)).textContent = node.edgeType || "?";
22+
(c = row.insertCell(5)).textContent = node.edgeType || "";
2323
c.className = `${ node.edgeType }Item`;
2424
row.insertCell(6).textContent = (node.parent || { label: "root" }).label || "?";
2525
}

0 commit comments

Comments
 (0)