File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -574,7 +574,7 @@ export default class GitService {
574
574
await repo . mergeBranches ( branchName , upstream . name ( ) )
575
575
}
576
576
577
- async getAheadBehindCount ( branchName : string ) : Promise < { ahead: number , behind : number } > {
577
+ async getAheadBehindCount ( branchName : string ) : Promise < { ahead: number , behind : number } > {
578
578
return this . gitRepo . getAheadBehindCount ( branchName )
579
579
}
580
580
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ export default class PushPullComponent {
104
104
}
105
105
106
106
renderPushButton ( ) {
107
- let label = this . viewModel . getAheadCount ( ) === 0 ? " Push" : `Push (${ this . viewModel . getAheadCount ( ) } )`
107
+ let label = this . viewModel . getAheadCount ( ) === 0 ? ' Push' : `Push (${ this . viewModel . getAheadCount ( ) } )`
108
108
return (
109
109
< button className = 'btn' onclick = { ( ) => this . push ( ) } disabled = { this . viewModel . hasRequestsInFlight ( ) } >
110
110
< span className = 'icon icon-arrow-up' />
@@ -114,7 +114,7 @@ export default class PushPullComponent {
114
114
}
115
115
116
116
renderPullButton ( ) {
117
- let label = this . viewModel . getBehindCount ( ) === 0 ? " Pull" : `Pull (${ this . viewModel . getBehindCount ( ) } )`
117
+ let label = this . viewModel . getBehindCount ( ) === 0 ? ' Pull' : `Pull (${ this . viewModel . getBehindCount ( ) } )`
118
118
return (
119
119
< button className = 'btn' onclick = { ( ) => this . pull ( ) } disabled = { this . viewModel . hasRequestsInFlight ( ) } >
120
120
< span className = 'icon icon-arrow-down' />
You can’t perform that action at this time.
0 commit comments