feat(blocking): добавить шкалу снимков над матрицей
Docker / build (push) Failing after 24s

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Denozordec
2026-08-25 12:32:46 +07:00
co-authored by Cursor
parent 9254b8dc22
commit efebcaf16d
6 changed files with 334 additions and 10 deletions
+1 -1
View File
@@ -334,7 +334,7 @@ export const censorcheckRepository = {
const page = rows.slice(0, limit)
const last = page[page.length - 1]
return {
items: page.map((row) => toRunDto(row, false)),
items: page.map((row) => toRunDto(row, true)),
nextCursor: rows.length > limit && last ? encodeCursor(last.createdAt, last.id) : null,
}
},