We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77ab80f commit 49ff2c8Copy full SHA for 49ff2c8
console-webapp/src/app/registrar/registrarSelector.component.ts
@@ -25,7 +25,10 @@ export class RegistrarSelectorComponent {
25
registrarInput = signal<string>(this.registrarService.registrarId());
26
filteredOptions?: string[];
27
allRegistrarIds = computed(() =>
28
- this.registrarService.registrars().map((r) => r.registrarId)
+ this.registrarService
29
+ .registrars()
30
+ .map((r) => r.registrarId)
31
+ .sort()
32
);
33
34
constructor(protected registrarService: RegistrarService) {
0 commit comments