浏览代码

Shows ... while autolinks are loading

main
Eric Amodio 2 年前
父节点
当前提交
eaef44b0aa
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/webviews/apps/commitDetails/commitDetails.ts

+ 1
- 1
src/webviews/apps/commitDetails/commitDetails.ts 查看文件

@ -455,7 +455,7 @@ export class CommitDetailsApp extends App> {
if ($count == null) return;
const count = (state.pullRequest != null ? 1 : 0) + (state.autolinkedIssues?.length ?? 0);
$count.innerHTML = `${count} found`;
$count.innerHTML = state.includeRichContent ? `${count} found` : '…';
}
renderPullRequest(state: CommitState) {

正在加载...
取消
保存