This commit is contained in:
2024-03-10 20:10:05 +00:00
parent 89e1b5a235
commit d6180aa154
24 changed files with 255 additions and 78 deletions

View File

@ -23,7 +23,7 @@ namespace isnd.Controllers
return View(new RegistrationPageIndexQueryAndResult
{
Query = model,
Result = pkgs.ToArray()
Result = pkgs.GetResults().Select(p => new PackageRegistration(apiBase, p)).ToArray()
});
}