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 1414### Fixed
1515- icon rendering on ` macOS `
1616- ` darwin ` agents are now recognized as ` macOS `
17+ - unsupported OS warning is displayed only for running workspaces
1718
1819## 2.1.3 - 2022-12-09
1920
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
122122 setSelectionMode(ListSelectionModel .SINGLE_SELECTION )
123123 selectionModel.addListSelectionListener {
124124 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 ) {
126126 notificationBanner.apply {
127127 component.isVisible = true
128128 showInfo(CoderGatewayBundle .message(" gateway.connector.view.coder.workspaces.unsupported.os.info" ))
You can’t perform that action at this time.
0 commit comments