Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRoehm committed Nov 22, 2024
1 parent c07538d commit c73e6d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ __pycache__/
# tools/

# End of https://www.toptal.com/developers/gitignore/api/aspnetcore
backend/data/*.data
backend/data/Database.db
backend/data/Database.db-shm
backend/data/Database.db-wal
Expand Down
4 changes: 2 additions & 2 deletions backend/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public Startup(IConfiguration configuration, IHostingEnvironment env)
Configuration = configuration;
HostingEnvironment = env;
}
private IHostingEnvironment HostingEnvironment { get; }
private IConfiguration Configuration { get; }
private IHostingEnvironment HostingEnvironment { get; }
private IConfiguration Configuration { get; }

// This method gets called by the runtime. Use this method to add services to the container.
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
Expand Down
2 changes: 1 addition & 1 deletion src/views/Contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function submit() {
{
email: email.value,
language: (locale.value && locale.value!="de"?locale.value:""),
purpose: options.value[purpose.value].purpose
purpose: purpose.value
}).then(()=> {
thanks.value = true
})
Expand Down

0 comments on commit c73e6d9

Please sign in to comment.