Skip to content

Commit 7b1bcda

Browse files
committed
Fix only showing first recent connection status
1 parent 217575c commit 7b1bcda

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
## Unreleased
66

7+
### Fixed
8+
9+
- All recent connections show their status now, not just the first.
10+
711
## 2.11.3 - 2024-04-30
812

913
### Fixed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
pluginGroup=com.coder.gateway
44
pluginName=coder-gateway
55
# SemVer format -> https://semver.org
6-
pluginVersion=2.11.3
6+
pluginVersion=2.11.4
77
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
88
# for insight into build numbers and IntelliJ Platform versions.
99
pluginSinceBuild=233.6745

src/main/kotlin/com/coder/gateway/views/CoderGatewayRecentWorkspaceConnectionsView.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ class CoderGatewayRecentWorkspaceConnectionsView(private val setContentCallback:
253253
},
254254
)
255255
}.topGap(gap)
256-
if (showError) {
256+
if (deploymentError == null || showError) {
257257
row {
258258
// There must be a way to make this properly wrap?
259259
label("<html><body style='width:350px;'>" + status.third + "</html>").applyToComponent {

0 commit comments

Comments
 (0)