update pkg, fix changes-number, sort by name(required)

This commit is contained in:
MichaelDvP
2024-06-22 20:00:50 +02:00
parent 78b38c2ee1
commit a07cc4fcc7
7 changed files with 54 additions and 19 deletions

View File

@@ -244,7 +244,7 @@ const Scheduler: FC = () => {
data={{
nodes: schedule
.filter((si) => !si.deleted)
.sort((a, b) => a.cmd.localeCompare(b.cmd))
.sort((a, b) => a.name.localeCompare(b.name))
}}
theme={schedule_theme}
layout={{ custom: true }}