Compare commits

..

4 Commits

4 changed files with 8 additions and 4 deletions

View File

@@ -135,3 +135,8 @@
### Features ### Features
* Add caching headers for env.js in Nginx configuration ([93e5af7](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/93e5af7402edb9fb9662e37d9b2b8c48d250c36e)) * Add caching headers for env.js in Nginx configuration ([93e5af7](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/93e5af7402edb9fb9662e37d9b2b8c48d250c36e))
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.17.0...0.0.0) (2026-01-07)
### Features
* Add caching headers for env.js in Nginx configuration ([d8b3904](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/d8b3904cbc8b08ed9522d7b9b4fa8af79bc75def))

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title> <title>Knockout-Whist</title>
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>

View File

@@ -14,8 +14,7 @@ const startGameQuasar = async() => {
return; return;
} }
isLoading.value = true; isLoading.value = true;
axios.post(`${api}/joinGame`, {gameId: lobbyCode.value.toString()}, {withCredentials: true}).then(response => { axios.post(`${api}/joinGame/${lobbyCode.value.toString()}`, {}, {withCredentials: true}).then(() => {
const responseData = response.data
$q.notify({ $q.notify({
message: `Lobby "${lobbyCode.value}" erfolgreich gefunden`, message: `Lobby "${lobbyCode.value}" erfolgreich gefunden`,
color: 'green-6', color: 'green-6',

View File

@@ -1,3 +1,3 @@
MAJOR=0 MAJOR=0
MINOR=17 MINOR=18
PATCH=0 PATCH=0