Skip to content

Commit 6da42b0

Browse files
committed
add missing default sort order in commits panel
Signed-off-by: phanirithvij <[email protected]>
1 parent 954347c commit 6da42b0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/gui/controllers/local_commits_controller.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1272,6 +1272,11 @@ func (self *LocalCommitsController) handleOpenLogMenu() error {
12721272
OnPress: onPress("author-date-order"),
12731273
Widget: types.MakeMenuRadioButton(currentValue == "author-date-order"),
12741274
},
1275+
{
1276+
Label: "default",
1277+
OnPress: onPress("default"),
1278+
Widget: types.MakeMenuRadioButton(currentValue == "default"),
1279+
},
12751280
},
12761281
})
12771282
},

0 commit comments

Comments
 (0)