このサイトは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行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+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
;
}
書き込み
プレビュー
読み込み中…
キャンセル
保存