hotFix(route): fix getTicket use skip
gitea/salix/pipeline/head This commit looks good Details
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Alex Moreno 2024-08-06 09:38:27 +02:00
parent fb15225078
commit 69c676d44b
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ module.exports = Self => {
stmt.merge(conn.makeWhere(filter.where));
stmt.merge(conn.makeGroupBy('t.id'));
stmt.merge(conn.makeOrderBy(filter.order));
stmt.merge(conn.makePagination(filter));
return conn.executeStmt(stmt, myOptions);
};