Skip to content

Commit fbf1f78

Browse files
committed
Merge branch 'main' into lilac/app-groups-frontend
2 parents 4dcf5e4 + a85351f commit fbf1f78

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

dogfood/coder/main.tf

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -267,14 +267,11 @@ module "vscode-web" {
267267
}
268268

269269
module "jetbrains" {
270-
count = data.coder_workspace.me.start_count
271-
source = "git::https://github.com/coder/modules.git//jetbrains?ref=jetbrains"
272-
agent_id = coder_agent.dev.id
273-
folder = local.repo_dir
274-
options = ["WS", "GO"]
275-
default = "GO"
276-
latest = true
277-
channel = "eap"
270+
count = data.coder_workspace.me.start_count
271+
source = "git::https://github.com/coder/registry.git//registry/coder/modules/jetbrains?ref=jetbrains"
272+
agent_id = coder_agent.dev.id
273+
folder = local.repo_dir
274+
major_version = "latest"
278275
}
279276

280277
module "filebrowser" {

site/src/pages/TaskPage/TaskPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ const TaskPage = () => {
255255

256256
<Button variant="outline" asChild>
257257
<RouterLink
258-
to={`/@${task.workspace.owner_username}/${task.workspace.name}`}
258+
to={`/@${task.workspace.owner_name}/${task.workspace.name}`}
259259
>
260260
View workspace
261261
</RouterLink>

0 commit comments

Comments
 (0)