Unverified Commit 76b3cd8e authored by 老广's avatar 老广 Committed by GitHub

Merge pull request #2583 from jumpserver/dev

Dev
parents fc167526 638ba316
...@@ -153,7 +153,7 @@ class Asset(OrgModelMixin): ...@@ -153,7 +153,7 @@ class Asset(OrgModelMixin):
nodes = [] nodes = []
for node in self.get_nodes(): for node in self.get_nodes():
_nodes = node.get_ancestor(with_self=True) _nodes = node.get_ancestor(with_self=True)
_nodes.append(_nodes) nodes.append(_nodes)
if flat: if flat:
nodes = list(reduce(lambda x, y: set(x) | set(y), nodes)) nodes = list(reduce(lambda x, y: set(x) | set(y), nodes))
return nodes return nodes
......
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