Only add link to Query Log when filtering property is available

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2021-01-19 07:11:11 +01:00
parent 8dc3944f7f
commit 92dbd9dd37

View File

@@ -497,7 +497,9 @@ function updateForwardDestinationsPie() {
} else if (e.which === 1) {
// which == 1 is left mouse button
var obj = encodeURIComponent(e.target.textContent);
window.open("queries.php?forwarddest=" + obj, "_self");
if (obj.length > 0) {
window.open("queries.php?forwarddest=" + obj, "_self");
}
}
});
}).done(function () {