From 05f24a5706d952b5d24e616c01c001f2c3549ee0 Mon Sep 17 00:00:00 2001 From: runephilosof-karnovgroup <101270124+runephilosof-karnovgroup@users.noreply.github.com> Date: Mon, 22 Jan 2024 08:13:22 +0100 Subject: [PATCH] Load more pipeline log lines (500 => 5000) (#3212) Co-authored-by: 6543 <6543@obermui.de> --- web/src/components/repo/pipeline/PipelineLog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/repo/pipeline/PipelineLog.vue b/web/src/components/repo/pipeline/PipelineLog.vue index 2f4886458..9fec6a2f0 100644 --- a/web/src/components/repo/pipeline/PipelineLog.vue +++ b/web/src/components/repo/pipeline/PipelineLog.vue @@ -159,7 +159,7 @@ const ansiUp = ref(new AnsiUp()); ansiUp.value.use_classes = true; const logBuffer = ref([]); -const maxLineCount = 500; // TODO: think about way to support lazy-loading more than last 300 logs (#776) +const maxLineCount = 5000; // TODO(2653): set back to 500 and implement lazy-loading support function isSelected(line: LogLine): boolean { return route.hash === `#L${line.number}`;