Skip to content

Commit

Permalink
Fix projects saving
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Nov 4, 2024
1 parent d90a3f0 commit 1fa86af
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.6.1 - 2024-11-04

- Fixed `projects` field not getting saved.

## v1.6.0 - 2024-11-04

- The Cloudflare Tunnel `"cf-connecting-ip"` header is now used to get the
Expand Down
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "survey"
version = "1.6.0"
version = "1.6.1"
licences = ["Apache-2.0"]

# Fill out these fields if you intend to generate HTML documentation or publish
Expand Down
12 changes: 6 additions & 6 deletions src/survey/router.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ fn data_collection() {
}

const question_names = [
"individual-sponsor", "company-sponsor", "sponsor-motivation", "gleam-user",
"gleam-experience", "gleam-open-source", "targets", "writing-libraries",
"writing-applications", "runtimes", "gleam-in-production", "company-name",
"professional-experience", "other-languages", "news-sources", "country",
"likes", "improvements", "job-role", "company-size", "production-os",
"development-os", "anything-else",
"projects", "individual-sponsor", "company-sponsor", "sponsor-motivation",
"gleam-user", "gleam-experience", "gleam-open-source", "targets",
"writing-libraries", "writing-applications", "runtimes", "gleam-in-production",
"company-name", "professional-experience", "other-languages", "news-sources",
"country", "likes", "improvements", "job-role", "company-size",
"production-os", "development-os", "anything-else",
]

const html_head = "
Expand Down

0 comments on commit 1fa86af

Please sign in to comment.