Change summary
ui/pages/repo/repo.go | 1 +
ui/pages/selection/selection.go | 1 -
2 files changed, 1 insertion(+), 1 deletion(-)
Detailed changes
@@ -280,6 +280,7 @@ func (r *Repo) headerView() string {
// TODO move this into a style.
url = lipgloss.NewStyle().
MarginLeft(1).
+ Foreground(lipgloss.Color("168")).
Width(r.common.Width - lipgloss.Width(name) - 1).
Align(lipgloss.Right).
Render(url)
@@ -230,7 +230,6 @@ func (s *Selection) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
case key.Matches(msg, s.common.KeyMap.Section):
s.activeBox = (s.activeBox + 1) % 2
case key.Matches(msg, s.common.KeyMap.Back):
- s.selector.Select(0)
cmds = append(cmds, s.selector.Init())
}
}