mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
removed limit due to issue with typeahead
This commit is contained in:
@ -1626,6 +1626,7 @@ tr.search:nth-child(odd) {
|
||||
left: -400px !important;
|
||||
margin-bottom: 20px;
|
||||
overflow: hidden;
|
||||
padding: 5px;
|
||||
background-color: #fff;
|
||||
-webkit-border-radius: 8px;
|
||||
-moz-border-radius: 8px;
|
||||
|
@ -640,7 +640,6 @@ $('#gsearch').typeahead({
|
||||
source: devices.ttAdapter(),
|
||||
async: true,
|
||||
display: name,
|
||||
limit: 8,
|
||||
templates: {
|
||||
header: '<h5><strong> Devices</strong></h5>',
|
||||
suggestion: Handlebars.compile('<p><a href="{{url}}"><img src="{{device_image}}" border="0"> <small><strong>{{name}}</strong> | {{device_os}} | {{version}} | {{device_hardware}} with {{device_ports}} port(s) | {{location}}</small></a></p>')
|
||||
@ -650,7 +649,6 @@ $('#gsearch').typeahead({
|
||||
source: ports.ttAdapter(),
|
||||
async: true,
|
||||
display: name,
|
||||
limit: 8,
|
||||
templates: {
|
||||
header: '<h5><strong> Ports</strong></h5>',
|
||||
suggestion: Handlebars.compile('<p><a href="{{url}}"><small><img src="images/icons/port.png" /> <strong>{{name}}</strong> – {{hostname}}<br /><i>{{description}}</i></small></a></p>')
|
||||
@ -660,7 +658,6 @@ $('#gsearch').typeahead({
|
||||
source: bgp.ttAdapter(),
|
||||
async: true,
|
||||
display: name,
|
||||
limit: 8,
|
||||
templates: {
|
||||
header: '<h5><strong> BGP Sessions</strong></h5>',
|
||||
suggestion: Handlebars.compile('<p><a href="{{url}}"><small><img src="{{bgp_image}}" border="0">{{name}} - {{hostname}}<br />AS{{localas}} -> AS{{remoteas}}</small></a></p>')
|
||||
|
Reference in New Issue
Block a user