mirror of
https://github.com/paperclipai/paperclip
synced 2026-03-25 11:21:48 +00:00
Keep sidebar ordering with portability branch
Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
@@ -28,10 +28,6 @@ function sortByHierarchy(agents: Agent[]): Agent[] {
|
||||
list.push(a);
|
||||
childrenOf.set(parent, list);
|
||||
}
|
||||
// Sort children at each level alphabetically by name
|
||||
for (const [, list] of childrenOf) {
|
||||
list.sort((a, b) => a.name.localeCompare(b.name));
|
||||
}
|
||||
const sorted: Agent[] = [];
|
||||
const queue = childrenOf.get(null) ?? [];
|
||||
while (queue.length > 0) {
|
||||
|
||||
Reference in New Issue
Block a user