From f80cc15d9007d51693f3a2f2f759b622db667aa5 Mon Sep 17 00:00:00 2001 From: Rafael Rodriguez Date: Tue, 23 Sep 2025 10:44:03 -0500 Subject: [PATCH] chore(dogfood): add tooltip to jetbrains module (#19781) ## Summary In this pull request we're adding support for a `tooltip` to the JetBrains module in the dogfood template. Tooltip support was added to the JetBrains module in https://github.com/coder/registry/pull/421 ### Testing Added `tooltip` to the JetBrains app in the example `docker` template and verified that the tooltip appeared in my workspace Screenshot 2025-09-23 at 10 01 52 --- dogfood/coder/main.tf | 3 ++- examples/templates/docker/main.tf | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index 436bfa74f3..f66b9d40d3 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -409,11 +409,12 @@ module "vscode-web" { module "jetbrains" { count = contains(jsondecode(data.coder_parameter.ide_choices.value), "jetbrains") ? data.coder_workspace.me.start_count : 0 source = "dev.registry.coder.com/coder/jetbrains/coder" - version = "1.0.3" + version = "1.1.0" agent_id = coder_agent.dev.id agent_name = "dev" folder = local.repo_dir major_version = "latest" + tooltip = "You need to [Install Coder Desktop](https://coder.com/docs/user-guides/desktop#install-coder-desktop) to use this button." } module "filebrowser" { diff --git a/examples/templates/docker/main.tf b/examples/templates/docker/main.tf index d7f87b1923..a3535042b0 100644 --- a/examples/templates/docker/main.tf +++ b/examples/templates/docker/main.tf @@ -137,10 +137,11 @@ module "code-server" { module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "~> 1.0" + version = "~> 1.1" agent_id = coder_agent.main.id agent_name = "main" folder = "/home/coder" + tooltip = "You need to [Install Coder Desktop](https://coder.com/docs/user-guides/desktop#install-coder-desktop) to use this button." } resource "docker_volume" "home_volume" { @@ -207,4 +208,4 @@ resource "docker_container" "workspace" { label = "coder.workspace_name" value = data.coder_workspace.me.name } -} \ No newline at end of file +}