Bläddra i källkod

Fixes empty search results in graph

main
Keith Daulton 2 år sedan
förälder
incheckning
891241e81d
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      src/webviews/apps/plus/graph/GraphWrapper.tsx

+ 1
- 1
src/webviews/apps/plus/graph/GraphWrapper.tsx Visa fil

@ -264,7 +264,7 @@ export function GraphWrapper({
}, [graphRows]);
useEffect(() => {
if (searchResultIds == null) {
if (searchResultIds == null || searchResultIds.length === 0) {
setSearchResultKey(undefined);
return;
}

Laddar…
Avbryt
Spara