This website works better with JavaScript.
Home
Explore
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fixes undefined exception
main
Eric Amodio
6 years ago
parent
8d030accf5
commit
c4d7de1978
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
src/views/gitExplorer.ts
+ 3
- 1
src/views/gitExplorer.ts
View File
@ -202,7 +202,9 @@ export class GitExplorer extends Disposable implements TreeDataProvider
this
.
setRoot
(
await
this
.
getRootNode
(
window
.
activeTextEditor
)
)
;
}
this
.
_root
!
.
refresh
(
)
;
if
(
this
.
_root
!==
undefined
)
{
this
.
_root
.
refresh
(
)
;
}
this
.
_onDidChangeTreeData
.
fire
(
)
;
}
Write
Preview
Loading…
Cancel
Save