Sfoglia il codice sorgente

Fixes empty search results in graph

main
Keith Daulton 2 anni fa
parent
commit
891241e81d
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/webviews/apps/plus/graph/GraphWrapper.tsx

+ 1
- 1
src/webviews/apps/plus/graph/GraphWrapper.tsx Vedi File

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

Caricamento…
Annulla
Salva