Commit 87abe63a authored by ibuler's avatar ibuler

[Bugfix] 修复luna不显示多组织资产的问题

parent 4d26fd8b
...@@ -417,8 +417,7 @@ class UserGrantedNodeChildrenApi(ListAPIView): ...@@ -417,8 +417,7 @@ class UserGrantedNodeChildrenApi(ListAPIView):
queryset = [] queryset = []
if node_id and node_id in [str(node.id) for node in nodes_granted]: if node_id and node_id in [str(node.id) for node in nodes_granted]:
node = [node for node in nodes_granted if str(node.id) == node_id][ node = [node for node in nodes_granted if str(node.id) == node_id][0]
0]
elif len(root_nodes) == 1: elif len(root_nodes) == 1:
node = root_nodes[0] node = root_nodes[0]
node.assets_amount = len(nodes_granted[node]) node.assets_amount = len(nodes_granted[node])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment