本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
Fixes
#1923
updates titles when # of repos change
main
Eric Amodio
2 年之前
父節點
65285251be
當前提交
908e8b26ce
共有
7 個檔案被更改
,包括
18 行新增
和
0 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
CHANGELOG.md
+2
-0
src/views/branchesView.ts
+2
-0
src/views/contributorsView.ts
+2
-0
src/views/remotesView.ts
+2
-0
src/views/stashesView.ts
+2
-0
src/views/tagsView.ts
+2
-0
src/views/worktreesView.ts
+ 6
- 0
CHANGELOG.md
查看文件
@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [
Keep a Changelog
](
http://keepachangelog.com/
) and this project adheres to [
Semantic Versioning
](
http://semver.org/
).
## [Unreleased]
## Fixed
- Fixes [
#1923
](
https://github.com/gitkraken/vscode-gitlens/issues/1923
) - View titles fail to update properly when number of "opened" repos changes
## [12.0.5] - 2022-03-17
### Changed
+ 2
- 0
src/views/branchesView.ts
查看文件
@ -100,6 +100,8 @@ export class BranchesViewNode extends RepositoriesSubscribeableNode
return
child
.
getChildren
(
)
;
}
this
.
view
.
title
=
'Branches'
;
return
this
.
children
;
}
+ 2
- 0
src/views/contributorsView.ts
查看文件
@ -107,6 +107,8 @@ export class ContributorsViewNode extends RepositoriesSubscribeableNode
return
children
;
}
this
.
view
.
title
=
'Contributors'
;
return
this
.
children
;
}
+ 2
- 0
src/views/remotesView.ts
查看文件
@ -94,6 +94,8 @@ export class RemotesViewNode extends RepositoriesSubscribeableNode
return
child
.
getChildren
(
)
;
}
this
.
view
.
title
=
'Remotes'
;
return
this
.
children
;
}
+ 2
- 0
src/views/stashesView.ts
查看文件
@ -82,6 +82,8 @@ export class StashesViewNode extends RepositoriesSubscribeableNode
return
child
.
getChildren
(
)
;
}
this
.
view
.
title
=
'Stashes'
;
return
this
.
children
;
}
+ 2
- 0
src/views/tagsView.ts
查看文件
@ -82,6 +82,8 @@ export class TagsViewNode extends RepositoriesSubscribeableNode
return
child
.
getChildren
(
)
;
}
this
.
view
.
title
=
'Tags'
;
return
this
.
children
;
}
+ 2
- 0
src/views/worktreesView.ts
查看文件
@ -88,6 +88,8 @@ export class WorktreesViewNode extends RepositoriesSubscribeableNode
return
children
;
}
this
.
view
.
title
=
'Worktrees'
;
return
this
.
children
;
}
Write
Preview
Loading…
取消
儲存