text-right should be text-end

This commit is contained in:
2023-12-18 09:29:23 +11:00
parent fd07fb2be7
commit 6fb7d165ae
2 changed files with 8 additions and 8 deletions

View File

@@ -171,7 +171,7 @@
<th>Address</th>
<th>Last Session</th>
<th>Oldest Message</th>
<th class="text-right">Messages Waiting</th>
<th class="text-end">Messages Waiting</th>
</tr>
</thead>
@@ -182,7 +182,7 @@
<td>{{ $ao->ftn_3d }}</td>
<td>{{ $ao->system->last_session ? $ao->system->last_session->format('Y-m-d H:i') : '-' }}</td>
<td>{{ ($x=$o->waiting($ao))->count() ? $x->first()->datetime->format('Y-m-d H:i') : '-' }}</td>
<td class="text-right">{{ number_format($x->count()) }}</td>
<td class="text-end">{{ number_format($x->count()) }}</td>
</tr>
@endforeach
</tbody>