Fix Sorting of PR Activity Listing (#2061)

ui/diff-word-wrap
Johannes Batzill 2024-05-23 20:12:25 +00:00 committed by Harness
parent adf041d747
commit 1f43f091de
1 changed files with 1 additions and 1 deletions

View File

@ -409,7 +409,7 @@ func (s *PullReqActivityStore) List(ctx context.Context,
stmt = applyFilter(filter, stmt)
stmt.OrderBy("pullreq_activity_order asc", "pullreq_activity_sub_order asc")
stmt = stmt.OrderBy("pullreq_activity_order asc", "pullreq_activity_sub_order asc")
sql, args, err := stmt.ToSql()
if err != nil {