Skip to content

Commit ceb1bcb

Browse files
committed
feat(webapp): route run detail nav list through runsList client
The run detail page loads a small prev/next navigation list via NextRunListPresenter; point it at the runsList client too so all runs list reads use the same dedicated client.
1 parent 99ef921 commit ceb1bcb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ async function getRunsListFromTableState({
190190
return null;
191191
}
192192

193-
const clickhouse = await clickhouseFactory.getClickhouseForOrganization(project.organizationId, "standard");
193+
const clickhouse = await clickhouseFactory.getClickhouseForOrganization(project.organizationId, "runsList");
194194
const runsListPresenter = new NextRunListPresenter($replica, clickhouse);
195195
const currentPageResult = await runsListPresenter.call(project.organizationId, environment.id, {
196196
userId,

0 commit comments

Comments
 (0)