Procházet zdrojové kódy

Fixes empty search results in graph

main
Keith Daulton před 2 roky
rodič
revize
891241e81d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/webviews/apps/plus/graph/GraphWrapper.tsx

+ 1
- 1
src/webviews/apps/plus/graph/GraphWrapper.tsx Zobrazit soubor

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

Načítá se…
Zrušit
Uložit