We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
copiedFromRemoteId
1 parent de310a2 commit 98c3f5dCopy full SHA for 98c3f5d
apps/desktop/src/lib/vbranches/types.ts
@@ -188,10 +188,7 @@ export class DetailedCommit {
188
189
get status(): CommitStatus {
190
if (this.isIntegrated) return 'integrated';
191
- if (
192
- (this.isRemote && (!this.relatedTo || this.id === this.relatedTo.id)) ||
193
- (this.copiedFromRemoteId && this.relatedTo && this.copiedFromRemoteId === this.relatedTo.id)
194
- )
+ if (this.isRemote && (!this.relatedTo || this.id === this.relatedTo.id))
195
return 'localAndRemote';
196
return 'local';
197
}
0 commit comments