Explorar el Código

Fixes empty search results in graph

main
Keith Daulton hace 2 años
padre
commit
891241e81d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/webviews/apps/plus/graph/GraphWrapper.tsx

+ 1
- 1
src/webviews/apps/plus/graph/GraphWrapper.tsx Ver fichero

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

Cargando…
Cancelar
Guardar