Skip to content

Commit 117fd54

Browse files
committed
Use correct message under default URL setting
Closes #410. I wrote the description but seems I forgot to update the actual key when copying the setup command setting as a template for the default URL setting.
1 parent 502269c commit 117fd54

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

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

55
## Unreleased
66

7+
### Fixed
8+
9+
- Default URL setting was showing the help text for the setup command instead of
10+
its own description.
11+
712
## 2.11.2 - 2024-04-30
813

914
### 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.2
6+
pluginVersion=2.11.3
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/CoderSettingsConfigurable.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class CoderSettingsConfigurable : BoundConfigurable("Coder") {
136136
textField().resizableColumn().align(AlignX.FILL)
137137
.bindText(state::defaultURL)
138138
.comment(
139-
CoderGatewayBundle.message("gateway.connector.settings.setup-command.comment"),
139+
CoderGatewayBundle.message("gateway.connector.settings.default-url.comment"),
140140
)
141141
}.layout(RowLayout.PARENT_GRID)
142142
}

0 commit comments

Comments
 (0)