small fixes
- set child default object to field key - strip whitespace if split - ignore case for sort order - setup.py package instead of module
This commit is contained in:
@@ -121,7 +121,7 @@ class GroupBySource(VirtualSourceObject):
|
||||
|
||||
def __lt__(self, other: 'GroupBySource') -> bool:
|
||||
# Used for |sort filter ("group" is the provided original string)
|
||||
return self.group < other.group
|
||||
return self.group.lower() < other.group.lower()
|
||||
|
||||
def __eq__(self, other: object) -> bool:
|
||||
# Used for |unique filter
|
||||
|
||||
Reference in New Issue
Block a user