feat: list package platforms in detail view
Alan Pearce alan@alanpearce.eu
Wed, 26 Mar 2025 21:31:38 +0100
1 files changed, 12 insertions(+), 0 deletions(-)
M internal/components/packageDetail.go → internal/components/packageDetail.go
@@ -105,6 +105,18 @@ ), ), }), ), + g.If(len(pkg.Platforms) > 0, + g.Group([]g.Node{ + Dt(g.Text("Platforms")), + Dd( + Ul( + g.Map(pkg.Platforms, func(plat string) g.Node { + return Li(g.Text(plat)) + }), + ), + ), + }), + ), g.If(pkg.Definition != "", g.Group([]g.Node{ Dt(g.Text("Defined")),