1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

fix: fixes flicker on scroll progress bar (#2371)

This commit is contained in:
Amir Raminfar
2023-08-28 09:06:31 -07:00
committed by GitHub
parent 06c6a605fd
commit 617bf71cad
2 changed files with 3 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
<template>
<ul class="events" ref="events" :class="{ 'disable-wrap': !softWrap, [size]: true }">
<ul class="events" :class="{ 'disable-wrap': !softWrap, [size]: true }">
<li
v-for="(item, index) in filtered"
:key="item.id"
@@ -46,7 +46,6 @@ const { messages } = toRefs(props);
const visible = filteredPayload(messages);
const filtered = filteredMessages(visible);
const events = ref<HTMLElement>();
let lastSelectedItem: LogEntry<string | JSONObject> | undefined = $ref(undefined);
function handleJumpLineSelected(e: Event, item: LogEntry<string | JSONObject>) {