fix: admin and docs bugs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-09 00:20:00 +00:00
co-authored by Claude Opus 4.6
parent c654ff9f73
commit 8be71e9929
2 changed files with 20 additions and 18 deletions
+18 -16
View File
@@ -913,23 +913,25 @@ const registrationTest = `{
</div>
<!-- Test endpoints -->
<div v-if="docs"
v-for="(test, key) in docs.testing"
:key="key"
class="border-2 border-border bg-surface p-5"
>
<div class="flex items-center gap-2 mb-2">
<span class="px-2 py-0.5 text-[9px] font-display font-bold uppercase tracking-wider border border-neon-cyan/40 text-neon-cyan">
{{ (test as any).method }}
</span>
<span class="font-mono text-xs text-neon-pink">
{{ (test as any).path }}
</span>
<template v-if="docs">
<div
v-for="(test, key) in docs.testing"
:key="key"
class="border-2 border-border bg-surface p-5"
>
<div class="flex items-center gap-2 mb-2">
<span class="px-2 py-0.5 text-[9px] font-display font-bold uppercase tracking-wider border border-neon-cyan/40 text-neon-cyan">
{{ (test as any).method }}
</span>
<span class="font-mono text-xs text-neon-pink">
{{ (test as any).path }}
</span>
</div>
<p class="font-mono text-text-secondary text-xs">
{{ (test as any).description }}
</p>
</div>
<p class="font-mono text-text-secondary text-xs">
{{ (test as any).description }}
</p>
</div>
</template>
<!-- Tips -->
<div v-if="docs" class="border-2 border-neon-cyan/20 bg-neon-cyan/5 p-5">