1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

chore: clean up (#3503)

This commit is contained in:
Amir Raminfar
2025-01-03 09:51:05 -08:00
committed by GitHub
parent 8c6c6882cd
commit cc620ad429
6 changed files with 6 additions and 30 deletions

View File

@@ -1,7 +1,7 @@
<template>
<LogItem :logEntry @click="showDrawer(LogDetails, { entry: logEntry })" class="clickable">
<ul class="fields space-x-4">
<li v-for="(value, name) in validValues" :key="name">
<ul class="space-x-4">
<li v-for="(value, name) in validValues" :key="name" class="inline-flex">
<span class="text-light">{{ name }}=</span><span class="font-bold" v-if="value === null">&lt;null&gt;</span>
<template v-else-if="Array.isArray(value)">
<span class="font-bold" v-html="JSON.stringify(value)"> </span>
@@ -33,10 +33,4 @@ const showDrawer = useDrawer();
.text-light {
@apply text-base-content/70;
}
.fields {
li {
@apply inline-flex;
}
}
</style>