We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81467c1 commit 45cabcdCopy full SHA for 45cabcd
src/main/kotlin/com/coder/toolbox/CoderRemoteProvider.kt
@@ -225,7 +225,10 @@ class CoderRemoteProvider(
225
listOf(
226
Action(context, "Create workspace") {
227
val url = context.settingsStore.workspaceCreateUrl ?: client?.url?.withPath("/templates").toString()
228
- context.desktop.browse(url) {
+ context.desktop.browse(
229
+ url
230
+ .replace("\$workspaceOwner", client?.me()?.username ?: "")
231
+ ) {
232
context.ui.showErrorInfoPopup(it)
233
}
234
},
0 commit comments