do not throw the ip to the right

This commit is contained in:
Girish Ramakrishnan
2025-09-26 11:13:32 +02:00
parent 70eb5c1053
commit a9a65fe1f1
2 changed files with 4 additions and 4 deletions

View File

@@ -188,7 +188,7 @@ onUnmounted(() => {
</tr>
<tr v-show="eventlog.isOpen">
<td colspan="4" class="eventlog-details">
<div v-if="eventlog.raw.source.ip" class="eventlog-source" @click="onCopySource(eventlog)">{{ eventlog.raw.source.ip }}</div>
<div v-if="eventlog.raw.source.ip" class="eventlog-source">Source IP: <span @click="onCopySource(eventlog)">{{ eventlog.raw.source.ip }}</span></div>
<pre>{{ JSON.stringify(eventlog.raw.data, null, 4) }}</pre>
</td>
</tr>