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}`;