Set the debounce much lower for selecting the span view

This commit is contained in:
Matt Aitken
2024-08-30 17:50:53 +01:00
parent 91778b1795
commit af92280c04
@@ -373,7 +373,7 @@ type TraceData = {
function TraceView({ run, environmentType, trace, selectedSpanId, replaceSearchParam }: TraceData) {
const changeToSpan = useDebounce((selectedSpan: string) => {
replaceSearchParam("span", selectedSpan);
}, 250);
}, 50);
if (!trace) {
return <NoLogsView run={run} />;