Ver código fonte

Updates fetch messaging again

main
Keith Daulton 1 ano atrás
pai
commit
8c53fbcb4c
1 arquivos alterados com 6 adições e 3 exclusões
  1. +6
    -3
      src/webviews/apps/plus/graph/GraphWrapper.tsx

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

@ -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">

Carregando…
Cancelar
Salvar