mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 15:13:33 +00:00
Fix collapse on hostname with "."
Fix "Error: Syntax error, unrecognized expression: [host=pc.local]"
This commit is contained in:
@@ -127,7 +127,7 @@
|
||||
function hide_host_instances(host) {
|
||||
var rows = $('table tr');
|
||||
|
||||
host_rows = rows.filter('[host='+host+']');
|
||||
host_rows = rows.filter("[host='"+host+"']");
|
||||
host_rows.toggle();
|
||||
$('span#collapse_host_instances_'+host).toggleClass("glyphicon-chevron-down").toggleClass("glyphicon-chevron-up");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user