You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: web/main.ts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1463,17 +1463,17 @@ class GitGraphView {
1463
1463
}
1464
1464
}
1465
1465
},{
1466
-
title: 'Reset Last Commit (Soft)'+ELLIPSIS,
1466
+
title: 'Edit Message'+ELLIPSIS,
1467
+
visible: visibility.editMessage,
1468
+
onClick: ()=>this.editCommitMessageAction(target)
1469
+
},{
1470
+
title: 'Reset Last Commit'+ELLIPSIS,
1467
1471
visible: visibility.undo&&hash===this.commitHead,
1468
1472
onClick: ()=>{
1469
1473
dialog.showConfirmation('Are you sure you want to reset the last commit? This will keep all changes from the commit as uncommitted changes.','Yes, reset the last commit',()=>{
1470
1474
runAction({command: 'undoLastCommit',repo: this.currentRepo},'Resetting Last Commit');
0 commit comments