Skip to content

Commit f9f751b

Browse files
committed
fixes server overview listing location as the node
1 parent 8660fcd commit f9f751b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
1616
* Environment setting script is much more user friendly and does not require an excessive amount of clicking and typing.
1717
* File upload method switched from BinaryJS to Socket.io implementation to fix bugs as well as be a little speedier and allow upload throttling.
1818
* `Server::getbyUUID()` now accepts either the `uuidShort` or full-length `uuid` for server identification.
19+
* API keys are tied to individual users and no longer created through the Admin CP.
20+
21+
### Fixed
22+
* Server overview listing the location short-code as the name of the node.
1923

2024
## v0.5.0-pre.2 (Bodacious Boreopterus)
2125

resources/views/base/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
</td>
5959
@endif
6060
<td><a href="/server/{{ $server->uuidShort }}">{{ $server->name }}</a></td>
61-
<td><code>{{ $server->a_locationShort }}</code></td>
61+
<td>{{ $server->nodeName }}</td>
6262
<td><code>@if(!is_null($server->ip_alias)){{ $server->ip_alias }}@else{{ $server->ip }}@endif:{{ $server->port }}</code></td>
6363
<td class="text-center" data-action="players">--</td>
6464
<td class="text-center hidden-sm hidden-xs"><span data-action="memory">--</span> / {{ $server->memory === 0 ? '&infin;' : $server->memory }} MB</td>

0 commit comments

Comments
 (0)