Use registrar ID, not name, in selector (#2138)

This commit is contained in:
gbrodman 2023-09-12 14:11:31 -04:00 committed by GitHub
parent 6047c16f3e
commit ca25e4dfbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,9 +8,9 @@
>
<mat-option
*ngFor="let registrar of registrarService.registrars"
[value]="registrar.registrarName"
[value]="registrar.registrarId"
>
{{ registrar.registrarName }}
{{ registrar.registrarId }}
</mat-option>
</mat-select>
</mat-form-field>