1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-15 00:15:32 +02:00

add missing default sort order in commits panel

Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
This commit is contained in:
phanirithvij
2024-12-02 13:06:46 +05:30
parent 954347c5bd
commit 6da42b07cd

View File

@ -1272,6 +1272,11 @@ func (self *LocalCommitsController) handleOpenLogMenu() error {
OnPress: onPress("author-date-order"), OnPress: onPress("author-date-order"),
Widget: types.MakeMenuRadioButton(currentValue == "author-date-order"), Widget: types.MakeMenuRadioButton(currentValue == "author-date-order"),
}, },
{
Label: "default",
OnPress: onPress("default"),
Widget: types.MakeMenuRadioButton(currentValue == "default"),
},
}, },
}) })
}, },