Skip to content

Commit 3fac66d

Browse files
committed
Fixes navbar link, closes pterodactyl#94
1 parent a8fd728 commit 3fac66d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
1010

1111
### Fixed
1212
* Wrong error highlighting of overallocate fields on Node creation ([#90](https://github.com/Pterodactyl/Panel/issues/90), thanks [@schrej](https://github.com/schrej))
13+
* Server link in navbar directed to 404 link (PR by [@Randomfish132](https://github.com/Randomfish132))
1314

1415
## v0.4.0
1516

resources/views/layouts/master.blade.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
@section('server-name')
174174
@if (isset($server->name) && isset($node->name))
175175
<ul class="nav navbar-nav">
176-
<li class="active" id="{{ $server->name }}"><a href="/server/{{ $server->uuidShort }}/index"><i id="applyUpdate" class="fa fa-circle-o-notch fa-spinner fa-spin spin-light"></i> {{ $server->name }}</a></li>
176+
<li class="active" id="{{ $server->name }}"><a href="/server/{{ $server->uuidShort }}"><i id="applyUpdate" class="fa fa-circle-o-notch fa-spinner fa-spin spin-light"></i> {{ $server->name }}</a></li>
177177
</ul>
178178
@endif
179179
@show
@@ -230,7 +230,6 @@
230230
@show
231231
</div>
232232
</div>
233-
<!-- Add Back Mobile Support -->
234233
<div class="row">
235234
<div class="col-md-3 hidden-xs hidden-sm" id="sidebar_links">
236235
@section('sidebar')

0 commit comments

Comments
 (0)