Reverse log order

This commit is contained in:
Michael Shamoon 2021-03-15 08:38:55 -07:00
parent 4ccf4c91d7
commit 0659a6c93b

View File

@ -14,5 +14,5 @@
<div class="bg-dark p-3 text-light text-monospace log-container">
<p
class="m-0 p-0 log-entry-{{getLogLevel(log)}}"
*ngFor="let log of logs">{{log}}</p>
*ngFor="let log of logs.reverse()">{{log}}</p>
</div>