chore: bump version to 1.4.3; add logging and season-slug validation
Some checks failed
Code Analysis and Production Deploy / analyze (push) Has been skipped
Code Analysis and Production Deploy / deploy-production (push) Has been skipped
Code Analysis and Production Deploy / deploy-test (push) Failing after 7s
Code Analysis and Production Deploy / analyze (pull_request) Failing after 16s
Code Analysis and Production Deploy / deploy-production (pull_request) Has been skipped
Code Analysis and Production Deploy / deploy-test (pull_request) Has been skipped
Require Package Version Change / check (pull_request) Failing after 8s
Some checks failed
Code Analysis and Production Deploy / analyze (push) Has been skipped
Code Analysis and Production Deploy / deploy-production (push) Has been skipped
Code Analysis and Production Deploy / deploy-test (push) Failing after 7s
Code Analysis and Production Deploy / analyze (pull_request) Failing after 16s
Code Analysis and Production Deploy / deploy-production (pull_request) Has been skipped
Code Analysis and Production Deploy / deploy-test (pull_request) Has been skipped
Require Package Version Change / check (pull_request) Failing after 8s
This commit is contained in:
5231
package-lock.json
generated
5231
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -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",
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user