dashboard: add dark mode

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-03-28 06:47:04 +01:00
parent 64701bf29f
commit a1fa48da75
37 changed files with 181 additions and 155 deletions

View File

@@ -260,7 +260,7 @@ export async function getEventList({
const { sb, getSql, join } = createSqlBuilder();
sb.limit = take;
sb.offset = (cursor ?? 0) * take;
sb.offset = Math.max(0, (cursor ?? 0) * take);
sb.where.projectId = `project_id = '${projectId}'`;
if (profileId) {

View File

@@ -84,7 +84,7 @@ export async function getProfileList({
};
}
sb.limit = take;
sb.offset = (cursor ?? 0) * take;
sb.offset = Math.max(0, (cursor ?? 0) * take);
sb.orderBy.created_at = 'max_created_at DESC';
const data = await chQuery<IClickhouseProfile>(getSql());
return data.map(transformProfile);