Fixes navbar link, closes #94
This commit is contained in:
parent
a8fd7283ef
commit
3fac66dfa0
|
@ -10,6 +10,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Wrong error highlighting of overallocate fields on Node creation ([#90](https://github.com/Pterodactyl/Panel/issues/90), thanks [@schrej](https://github.com/schrej))
|
* Wrong error highlighting of overallocate fields on Node creation ([#90](https://github.com/Pterodactyl/Panel/issues/90), thanks [@schrej](https://github.com/schrej))
|
||||||
|
* Server link in navbar directed to 404 link (PR by [@Randomfish132](https://github.com/Randomfish132))
|
||||||
|
|
||||||
## v0.4.0
|
## v0.4.0
|
||||||
|
|
||||||
|
|
|
@ -173,7 +173,7 @@
|
||||||
@section('server-name')
|
@section('server-name')
|
||||||
@if (isset($server->name) && isset($node->name))
|
@if (isset($server->name) && isset($node->name))
|
||||||
<ul class="nav navbar-nav">
|
<ul class="nav navbar-nav">
|
||||||
<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>
|
<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>
|
||||||
</ul>
|
</ul>
|
||||||
@endif
|
@endif
|
||||||
@show
|
@show
|
||||||
|
@ -230,7 +230,6 @@
|
||||||
@show
|
@show
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- Add Back Mobile Support -->
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3 hidden-xs hidden-sm" id="sidebar_links">
|
<div class="col-md-3 hidden-xs hidden-sm" id="sidebar_links">
|
||||||
@section('sidebar')
|
@section('sidebar')
|
||||||
|
|
Loading…
Reference in New Issue