diff --git a/views/event-logs.ejs b/views/event-logs.ejs
index 2e3be48..9560e1c 100644
--- a/views/event-logs.ejs
+++ b/views/event-logs.ejs
@@ -79,6 +79,9 @@
const reasons = <% - JSON.stringify(dataTypes.EventReason) %>;
const tr = document.createElement('tr');
+ if (log.Type === 3) {
+ tr.style.background = '#f7c5c5';
+ }
tr.innerHTML = `
${log.Controller} |
${log.EventIndex} |
@@ -128,7 +131,7 @@
<% logs.forEach(function(log) { %>
-
+
<%= log.Controller %>
|
@@ -145,13 +148,12 @@
const ss = pad(date.getSeconds());
const tz = Intl.DateTimeFormat().resolvedOptions().timeZone;
%>
- %>
<%= `${yyyy}-${mm}-${dd} ${HH}:${MM}:${ss} ${tz}` %>
<%= dataTypes.EventType[log.Type] %>
|
-
+ |
<%= log.Granted ? "True" : "False" %>
|
|