7 lines
301 B
Text
7 lines
301 B
Text
|
|
<div hx-swap="outerHTML" hx-get="/workshop/<%= it.structId %>/route/<%= it.routeId %>/logs?since=<%= it.since || 0 %>" hx-trigger="every 2s" class="hidden"></div>
|
||
|
|
<% it.logs.forEach((log) => { %>
|
||
|
|
<div class="<% if (log.error) { %>bg-red-800 text-white <% } %>">
|
||
|
|
<%= log.content %>
|
||
|
|
</div>
|
||
|
|
<% }) %>
|