We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 715309a commit 9df896bCopy full SHA for 9df896b
pkg/tui/tui.go
@@ -142,7 +142,9 @@ func (ui *TUI) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
142
case tea.KeyMsg:
143
switch {
144
case key.Matches(msg, ui.common.KeyMap.Help):
145
- case key.Matches(msg, ui.common.KeyMap.CmdQuit) && ui.activePage() != sourceConfigurePage:
+ case key.Matches(msg, ui.common.KeyMap.CmdQuit) &&
146
+ (ui.activePage() == wizardIntroPage || ui.activePage() == analyzeKeysPage || ui.activePage() == sourceSelectPage):
147
+
148
ui.args = nil
149
return ui, tea.Quit
150
case key.Matches(msg, ui.common.KeyMap.Quit):
0 commit comments