Merge pull request 'chore: bump version to 1.4.3; add logging and season-slug validation' (#19) from dev into main
Some checks failed
Code Analysis and Production Deploy / analyze (push) Has been skipped
Code Analysis and Production Deploy / deploy-test (push) Has been cancelled
Code Analysis and Production Deploy / deploy-production (push) Has been cancelled

Reviewed-on: #19
This commit is contained in:
2026-05-20 11:31:42 +02:00
3 changed files with 2716 additions and 2534 deletions

5233
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -10,7 +10,7 @@
},
"scripts": {
"dev": "nuxt dev --port 3100",
"build": "nuxt build",
"version": "1.4.3",
"generate": "nuxt generate",
"preview": "nuxt preview --port 3100",
"start": "nuxt start --port 3100",

View File

@@ -220,7 +220,10 @@
v-if="passkeyError"
class="flex items-center p-3 rounded-md bg-red-50 text-red-700 text-sm mb-3"
>
<AlertCircle :size="20" class="mr-2" />
<AlertCircle
:size="20"
class="mr-2"
/>
{{ passkeyError }}
</div>
@@ -243,11 +246,17 @@
</button>
</div>
<div v-if="passkeys.length === 0" class="text-sm text-gray-600">
<div
v-if="passkeys.length === 0"
class="text-sm text-gray-600"
>
Noch keine Passkeys hinterlegt.
</div>
<ul v-else class="space-y-2">
<ul
v-else
class="space-y-2"
>
<li
v-for="pk in passkeys"
:key="pk.credentialId"