Skip to content

Commit 520afb4

Browse files
committed
Fixes overlay huge table for session listing, closes pterodactyl#105
1 parent 634a62a commit 520afb4

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
2828

2929
### Deprecated
3030
### Removed
31+
* Removed active session management table displaying the last location of a session.
32+
3133
### Security
3234

3335
## v0.4.1 (Articulate Aerotitan)

resources/views/base/security.blade.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
<th>Session ID</th>
4242
<th>IP Address</th>
4343
<th>User Agent</th>
44-
<th>Last Location</th>
4544
<th>Last Activity</th>
4645
<th></th>
4746
</th>
@@ -53,13 +52,6 @@
5352
<td><code>{{ substr($session->id, 0, 8) }}</code></td>
5453
<td>{{ $session->ip_address }}</td>
5554
<td><small>{{ $session->user_agent }}</small></td>
56-
<td>
57-
@if(isset($prev['_previous']['url']))
58-
{{ str_replace(env('APP_URL'), '', $prev['_previous']['url']) }}
59-
@else
60-
<em>unknwon</em>
61-
@endif
62-
</td>
6355
<td>
6456
@if((time() - $session->last_activity < 10))
6557
<em>just now</em>

0 commit comments

Comments
 (0)