fix: models not loading

Co-Authored-By: _00_ <131402327+rgaricano@users.noreply.github.com>
This commit is contained in:
Timothy Jaeryang Baek
2025-08-21 12:33:26 +04:00
parent 1a15a62b73
commit bbfe456f90
3 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@
// return (b.is_active ?? true) - (a.is_active ?? true);
// }
// If both models' active states are the same, sort alphabetically
return a.name.localeCompare(b.name);
return (a?.name ?? a?.id ?? '').localeCompare(b?.name ?? b?.id ?? '');
});
}