OID update, fix sidebar icon rendering

This commit is contained in:
Deon George
2020-09-19 20:21:02 +10:00
parent 902330e734
commit b043e3bc93
3 changed files with 15 additions and 5 deletions

View File

@@ -34,8 +34,11 @@
<ul class="vertical-nav-menu">
<li class="app-sidebar__heading">{{ $server ?? 'Server Name' }}</li>
<li>
<div class="font-icon-wrapper float-left mr-1">
<a class="p-0 m-0 server-icon" href="{{ url('info') }}" style="display: contents;"><i class="fas fa-fw fa-info pr-1 pl-1"></i></a>
<div class="font-icon-wrapper float-left mr-1 server-icon">
<a class="p-0 m-0" href="{{ url('info') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-info pr-1 pl-1"></i></a>
</div>
<div class="font-icon-wrapper float-left ml-1 mr-1 server-icon">
<a class="p-0 m-0" href="{{ url('schema') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-fingerprint pr-1 pl-1"></i></a>
</div>
<div class="clearfix"></div>
</li>
@@ -55,7 +58,7 @@
var content;
$.ajax({
url: $(this).attr('href'),
url: $(this).children('a:first-child').attr('href'),
method: 'GET',
dataType: 'html',
statusCode: {
@@ -77,7 +80,6 @@
e.stopPropagation();
console.log($(this).attr('href'));
return false;
});
});