Skip to content

Commit

Permalink
fix: tree view parentId parsing
Browse files Browse the repository at this point in the history
fix: #1156
  • Loading branch information
windingwind committed Oct 11, 2024
1 parent d85d27f commit ef1bbe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/chrome/content/treeView.html
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@
? expandedStatus[node.model.name]
: node.model.level < expandLevel,
parentId:
node.parent.model.id > 0
node.parent.model.id !== -1
? String(node.parent.model.id)
: undefined,
});
Expand Down

0 comments on commit ef1bbe1

Please sign in to comment.