This commit is contained in:
2026-06-25 13:48:07 -05:00
parent d8342a6475
commit 7f925aa8e5
8 changed files with 128 additions and 9 deletions

View File

@@ -30,6 +30,14 @@
</div>
<p>{{ entry.message }}</p>
</template>
<template v-else-if="entry.info">
<div class="trace-entry-header info">
<Info :size="16" />
<strong>Info</strong>
</div>
<p>{{ entry.message }}</p>
<pre>{{ format(entry.details) }}</pre>
</template>
<template v-else>
<div class="trace-entry-header">
<span class="trace-method">{{ entry.method || 'INFO' }}</span>
@@ -58,7 +66,7 @@
</template>
<script setup>
import { AlertTriangle, Clipboard } from '@lucide/vue';
import { AlertTriangle, Clipboard, Info } from '@lucide/vue';
import BaseModal from '../ui/BaseModal.vue';
const props = defineProps({