We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95c75e3 commit a85e605Copy full SHA for a85e605
v7/sidebar/sidebar.py
@@ -104,8 +104,8 @@ def invert_order(node):
104
else:
105
root_list = []
106
for classification_name, classification in classifications:
107
- node = utils.TreeNode('')
108
- node.classification_name = classification_name
+ node = utils.TreeNode(classification_name)
+ node.classification_name = classification
109
node.classification_path = taxonomy.extract_hierarchy(classification)
110
root_list.append(node)
111
flat_hierarchy = utils.flatten_tree_structure(root_list)
0 commit comments