diff --git a/pkg/gui/commits_panel.go b/pkg/gui/commits_panel.go index 7cdde57e1..69765b8a5 100644 --- a/pkg/gui/commits_panel.go +++ b/pkg/gui/commits_panel.go @@ -593,12 +593,14 @@ func (gui *Gui) createTagMenu(commitSha string) error { displayString: gui.Tr.LcLightweightTag, onPress: func() error { return gui.handleCreateLightweightTag(commitSha) - }}, + }, + }, { displayString: gui.Tr.LcAnnotatedTag, onPress: func() error { return gui.handleCreateAnnotatedTag(commitSha) - }}, + }, + }, } return gui.createMenu(gui.Tr.TagMenuTitle, items, createMenuOptions{showCancel: true})