File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/main/kotlin/com/coder/gateway/views/steps Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 14
14
### Fixed
15
15
- icon rendering on ` macOS `
16
16
- ` darwin ` agents are now recognized as ` macOS `
17
+ - unsupported OS warning is displayed only for running workspaces
17
18
18
19
## 2.1.3 - 2022-12-09
19
20
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
122
122
setSelectionMode(ListSelectionModel .SINGLE_SELECTION )
123
123
selectionModel.addListSelectionListener {
124
124
enableNextButtonCallback(selectedObject != null && selectedObject?.agentStatus == RUNNING && selectedObject?.agentOS == OS .LINUX )
125
- if (selectedObject?.agentOS != OS .LINUX ) {
125
+ if (selectedObject?.agentStatus == RUNNING && selectedObject?. agentOS != OS .LINUX ) {
126
126
notificationBanner.apply {
127
127
component.isVisible = true
128
128
showInfo(CoderGatewayBundle .message(" gateway.connector.view.coder.workspaces.unsupported.os.info" ))
You can’t perform that action at this time.
0 commit comments