mirror of
https://github.com/amir20/dozzle.git
synced 2026-08-07 11:24:44 +00:00
95794779d6
Co-authored-by: Claude <noreply@anthropic.com>
17 lines
418 B
Vue
17 lines
418 B
Vue
<template>
|
|
<LogItem :logEntry>
|
|
<LogLevel class="flex select-none" :level="logEntry.level" />
|
|
<div
|
|
class="[word-break:break-word] whitespace-pre-wrap group-[.disable-wrap]:whitespace-pre"
|
|
v-html="colorize(logEntry.message)"
|
|
></div>
|
|
</LogItem>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { SimpleLogEntry } from "@/models/LogEntry";
|
|
|
|
defineProps<{
|
|
logEntry: SimpleLogEntry;
|
|
}>();
|
|
</script>
|