File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
src/main/kotlin/com/coder/toolbox/views Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ### Changed
6
+
7
+ - action buttons on the token input step were swapped to achieve better keyboard navigation
8
+
5
9
## 0.1.3 - 2025-04-09
6
10
7
11
### Fixed
Original file line number Diff line number Diff line change @@ -59,14 +59,14 @@ class AuthWizardPage(
59
59
}
60
60
actionButtons.update {
61
61
listOf (
62
- Action (context.i18n.ptrl(" Back" ), closesPage = false , actionBlock = {
63
- tokenStep.onBack()
64
- displaySteps()
65
- }),
66
62
Action (context.i18n.ptrl(" Connect" ), closesPage = false , actionBlock = {
67
63
if (tokenStep.onNext()) {
68
64
displaySteps()
69
65
}
66
+ }),
67
+ Action (context.i18n.ptrl(" Back" ), closesPage = false , actionBlock = {
68
+ tokenStep.onBack()
69
+ displaySteps()
70
70
})
71
71
)
72
72
}
You can’t perform that action at this time.
0 commit comments