Commit 20ce5d11 authored by ibuler's avatar ibuler

[Update] 修改排序节点排序规则

parent 497cba6b
......@@ -49,10 +49,7 @@ class Node(OrgModelMixin):
if self_parent_key == other_parent_key:
return self.name > other.name
if self_key != other_key:
return self_key > other_key
else:
return self.name > other.name
return self_key > other_key
def __lt__(self, other):
return not self.__gt__(other)
......
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