File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
src/main/kotlin/com/coder/gateway Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 23
23
- windows-latest
24
24
runs-on : ${{ matrix.platform }}
25
25
steps :
26
- - uses : actions/checkout@v4.1.7
26
+ - uses : actions/checkout@v4.2.0
27
27
28
28
- uses : actions/setup-java@v4
29
29
with :
56
56
steps :
57
57
# Check out current repository
58
58
- name : Fetch Sources
59
- uses : actions/checkout@v4.1.7
59
+ uses : actions/checkout@v4.2.0
60
60
61
61
# Setup Java 11 environment for the next steps
62
62
- name : Setup Java
@@ -140,7 +140,7 @@ jobs:
140
140
141
141
# Check out current repository
142
142
- name : Fetch Sources
143
- uses : actions/checkout@v4.1.7
143
+ uses : actions/checkout@v4.2.0
144
144
145
145
# Remove old release drafts by using the curl request for the available releases with draft flag
146
146
- name : Remove Old Release Drafts
Original file line number Diff line number Diff line change 15
15
16
16
# Check out current repository
17
17
- name : Fetch Sources
18
- uses : actions/checkout@v4.1.7
18
+ uses : actions/checkout@v4.2.0
19
19
with :
20
20
ref : ${{ github.event.release.tag_name }}
21
21
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ open class CoderRestClient(
175
175
// It is possible for there to be resources with duplicate names so we
176
176
// need to use a set.
177
177
return workspaces.flatMap { ws ->
178
- resources(ws).filter { it.agents != null }.flatMap { it.agents!! }.map {
178
+ ws.latestBuild. resources.ifEmpty { resources (ws) } .filter { it.agents != null }.flatMap { it.agents!! }.map {
179
179
ws to it
180
180
}
181
181
}.toSet()
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ class CoderGatewayRecentWorkspaceConnectionsView(private val setContentCallback:
244
244
foreground = Color .GRAY
245
245
}
246
246
}
247
- label(" " ) .resizableColumn().align( AlignX . FILL )
247
+ label(workspaceProjectIDE.name.replace(workspaceName + " . " , " " )) .resizableColumn()
248
248
label(workspaceProjectIDE.ideName).applyToComponent {
249
249
foreground = JBUI .CurrentTheme .ContextHelp .FOREGROUND
250
250
font = ComponentPanelBuilder .getCommentFont(font)
You can’t perform that action at this time.
0 commit comments