From 27c9c279d8e0527337abd857507adc585404978f Mon Sep 17 00:00:00 2001 From: Christopher Homberger Date: Sat, 3 May 2025 14:27:44 +0200 Subject: [PATCH] fix tests --- models/actions/run_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/actions/run_list.go b/models/actions/run_list.go index e48f45aa7d..d7c0854dcd 100644 --- a/models/actions/run_list.go +++ b/models/actions/run_list.go @@ -111,7 +111,7 @@ func (opts FindRunOptions) ToJoins() []db.JoinFunc { } func (opts FindRunOptions) ToOrders() string { - return "`id` DESC" + return "`action_run`.`id` DESC" } type StatusInfo struct {