1
0
mirror of https://github.com/google/nomulus synced 2026-07-20 15:02:30 +00:00

Compare commits

...

1 Commits

Author SHA1 Message Date
gbrodman 0f0097c15c Wait to load domain list until a registrar is selected (#2485)
This isn't the worst thing in the world but it does result in a bad
request to the server otherwise, and log/error spam. So, only load the
domains list if we have a registrar selected.
2024-06-25 18:39:53 +00:00
@@ -60,8 +60,9 @@ export class DomainListComponent {
effect(() => {
this.pageNumber = 0;
this.totalResults = 0;
this.reloadData();
this.registrarService.registrarId();
if (this.registrarService.registrarId()) {
this.reloadData();
}
});
}