Fix: fix log line trackby function

This commit is contained in:
shamoon 2024-11-14 00:05:38 -08:00
parent 36ecb8587d
commit 56ef263540
No known key found for this signature in database

View File

@ -36,9 +36,7 @@
<ng-container i18n>Loading...</ng-container> <ng-container i18n>Loading...</ng-container>
</div> </div>
} }
@for (log of logs; track log) { @for (log of logs; track $index) {
<p <p class="m-0 p-0 log-entry-{{getLogLevel(log)}}">{{log}}</p>
class="m-0 p-0 log-entry-{{getLogLevel(log)}}"
>{{log}}</p>
} }
</div> </div>