File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
src/main/kotlin/com/coder/toolbox Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
### Fixed
11
11
12
+ - url on the main page is now refreshed when switching between multiple deployments (via logout/login or URI handling)
12
13
- tokens are now remembered after switching between multiple deployments
13
14
14
15
## 0.2.2 - 2025-05-21
15
16
16
- ### Added
17
-
18
17
- render network status in the Settings tab, under ` Additional environment information ` section.
19
18
- quick action for creating new workspaces from the web dashboard.
20
19
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import com.coder.toolbox.util.DialogUi
9
9
import com.coder.toolbox.util.withPath
10
10
import com.coder.toolbox.views.Action
11
11
import com.coder.toolbox.views.AuthWizardPage
12
+ import com.coder.toolbox.views.CoderPage
12
13
import com.coder.toolbox.views.CoderSettingsPage
13
14
import com.coder.toolbox.views.NewEnvironmentPage
14
15
import com.coder.toolbox.views.state.AuthWizardState
@@ -341,7 +342,9 @@ class CoderRemoteProvider(
341
342
this .client = client
342
343
pollJob?.cancel()
343
344
environments.showLoadingMessage()
345
+ coderHeaderPage = NewEnvironmentPage (context, context.i18n.pnotr(client.url.toString()))
344
346
pollJob = poll(client, cli)
347
+ context.ui.showUiPage(CoderPage .emptyPage(context))
345
348
goToEnvironmentsPage()
346
349
}
347
350
Original file line number Diff line number Diff line change @@ -53,6 +53,10 @@ abstract class CoderPage(
53
53
)
54
54
}
55
55
}
56
+
57
+ companion object {
58
+ fun emptyPage (ctx : CoderToolboxContext ): UiPage = UiPage (ctx.i18n.pnotr(" " ))
59
+ }
56
60
}
57
61
58
62
/* *
You can’t perform that action at this time.
0 commit comments