dashboard: Show eventlog source IP in details

This commit is contained in:
Johannes Zellner
2024-06-11 12:05:54 +02:00
parent 76dadd1f8b
commit 915e3ecc94
2 changed files with 8 additions and 2 deletions

View File

@@ -1463,7 +1463,10 @@
<td style="word-wrap: anywhere;" colspan="3" ng-bind-html="eventLog.details"></td>
</tr>
<tr ng-show="eventlog.activeEventLog === eventLog">
<td colspan="4"><pre class="eventlog-details">{{ eventLog.raw.data | json }}</pre></td>
<td colspan="4">
<p ng-show="eventLog.raw.source.ip">Source IP: <code>{{ eventLog.raw.source.ip }}</code></p>
<pre class="eventlog-details">{{ eventLog.raw.data | json }}</pre>
</td>
</tr>
</tbody>
</table>