fix: web client styling and nav updates #21

Merged
naomi merged 7 commits from fix/announce into main 2026-03-31 18:04:10 -07:00
Showing only changes of commit 135d260ef5 - Show all commits
+3 -1
View File
@@ -31,6 +31,8 @@ export class Sanctions {
private async loadSanctions(): Promise<void> {
const sanctions = await this.sanctionsService.getSanctions();
this.sanctions = sanctions.sort((a, b) => b.number - a.number);
this.sanctions = sanctions.sort((a, b) => {
return b.number - a.number;
});
}
}