We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9591230 commit 547f21dCopy full SHA for 547f21d
projects/fusio-sdk/src/lib/component/log/list/log-list.component.html
@@ -9,17 +9,15 @@
9
<tr>
10
<th style="width:50px;">Method</th>
11
<th style="width:60%;">Path</th>
12
- <th style="width:20%;">IP</th>
13
- <th style="width:150px;">Insert-Date</th>
+ <th style="width:40%;">IP</th>
14
<th></th>
15
</tr>
16
</thead>
17
<tbody>
18
<tr *ngFor="let entry of entries">
19
- <td>{{entry.method}}</td>
+ <td><span class="badge text-bg-dark me-1">{{entry.method}}</span></td>
20
<td>{{entry.path}}</td>
21
<td>{{entry.ip}}</td>
22
- <td>{{entry.date|date:'short'}}</td>
23
<td>
24
<div class="btn-group" role="group">
25
<a [routerLink]="getDetailLink(entry.id)" class="btn btn-primary"><i class="bi bi-search"></i></a>
0 commit comments