Explorar el Código

Updates fetch messaging again

main
Keith Daulton hace 1 año
padre
commit
8c53fbcb4c
Se han modificado 1 ficheros con 6 adiciones y 3 borrados
  1. +6
    -3
      src/webviews/apps/plus/graph/GraphWrapper.tsx

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

@ -1130,9 +1130,12 @@ export function GraphWrapper({
tooltip += ` ${remote}`;
fetchTooltip += ` ${remote}`;
}
const lastFetchedText = fetchedText ? `\nLast fetched ${fetchedText}` : '\nNever fetched';
tooltip += lastFetchedText;
fetchTooltip += lastFetchedText;
if (fetchedText != null) {
const lastFetchedText = `\nLast fetched ${fetchedText}`;
tooltip += lastFetchedText;
fetchTooltip += lastFetchedText;
}
return (
<div className="titlebar__group">

Cargando…
Cancelar
Guardar