소스 검색

Updates fetch messaging again

main
Keith Daulton 1 년 전
부모
커밋
8c53fbcb4c
1개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  1. +6
    -3
      src/webviews/apps/plus/graph/GraphWrapper.tsx

+ 6
- 3
src/webviews/apps/plus/graph/GraphWrapper.tsx 파일 보기

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

불러오는 중...
취소
저장