Skip to content

Commit 160ff65

Browse files
committed
Hides continue action when a rebase has conflicts
1 parent 2bd458c commit 160ff65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webviews/apps/plus/home/components/merge-rebase-status.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class GlMergeConflictWarning extends LitElement {
134134

135135
return html`<action-nav>
136136
${when(
137-
status !== 'revert',
137+
status !== 'revert' && !(status === 'rebase' && this.conflicts),
138138
() => html`
139139
<action-item label="Continue" icon="debug-continue" href=${this.onContinueUrl}></action-item>
140140
`,

0 commit comments

Comments
 (0)