Skip to content

Commit d885149

Browse files
authored
fix: fix positron module slug and display name (#752)
## Description In #279, I had accidentally made the slug of the Positron Desktop app "cursor", and display name to be "Cursor Desktop". This PR fixes that. ## Type of Change - [ ] New module - [ ] New template - [x] Bug fix - [ ] Feature/enhancement - [ ] Documentation - [ ] Other
1 parent 186a779 commit d885149

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • registry/cytoshahar/modules/positron

registry/cytoshahar/modules/positron/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ variable "group" {
4141
variable "slug" {
4242
type = string
4343
description = "The slug of the app."
44-
default = "cursor"
44+
default = "positron"
4545
}
4646

4747
variable "display_name" {
4848
type = string
4949
description = "The display name of the app."
50-
default = "Cursor Desktop"
50+
default = "Positron Desktop"
5151
}
5252

5353
data "coder_workspace" "me" {}

0 commit comments

Comments
 (0)