aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2024-03-25 19:58:34 +0200
committerArthur Zamarin <arthurzam@gentoo.org>2024-03-25 19:58:34 +0200
commitb363ad5f410ce33de72f5800d0927639cd91be95 (patch)
treebd69db486724d739738062d2fd2e1fd7fa8cf2e3
parentpage/footer: Gentoo e.V. holds the trademark in Europe (diff)
downloadsoko-develop.tar.gz
soko-develop.tar.bz2
soko-develop.zip
app/maintainer/stabilization: fix columnsHEADmasterdevelop
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r--pkg/app/handler/maintainer/show.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/app/handler/maintainer/show.go b/pkg/app/handler/maintainer/show.go
index 3975348..2beb31c 100644
--- a/pkg/app/handler/maintainer/show.go
+++ b/pkg/app/handler/maintainer/show.go
@@ -263,7 +263,7 @@ func ShowStabilizationFile(w http.ResponseWriter, r *http.Request) {
var results []*models.PkgCheckResult
err = database.DBCon.Model(&results).
- Column("atom", "cpv", "message").
+ Column("category", "package", "version", "message").
Where("class = ?", "StableRequest").
Where("atom IN (?)", query).
OrderExpr("cpv").