We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6fd5262 + 314e14f commit 85498b3Copy full SHA for 85498b3
packages/host/app/components/matrix/room.gts
@@ -447,7 +447,11 @@ export default class Room extends Component<Signature> {
447
448
private get sortedSkills(): Skill[] {
449
return [...this.skills].sort((a, b) => {
450
- return a.card.title.localeCompare(b.card.title);
+ // Not all of the skills have a title, so we use the skillEventId as a fallback
451
+ // which should be consistent.
452
+ let aTitle = a.card.title || a.skillEventId;
453
+ let bTitle = b.card.title || b.skillEventId;
454
+ return aTitle.localeCompare(bTitle);
455
});
456
}
457
0 commit comments