From 9184fa3ab35b74346439e869f64db099db7992c1 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 27 Jan 2024 03:10:54 -0500 Subject: [PATCH] Fix Copy IP to clipboard in Assets missing clipboardjs class --- client_assets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_assets.php b/client_assets.php index 2b894880..a482214e 100644 --- a/client_assets.php +++ b/client_assets.php @@ -223,7 +223,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()")); if (empty($asset_ip)) { $asset_ip_display = "-"; } else { - $asset_ip_display = "$asset_ip"; + $asset_ip_display = "$asset_ip"; } $asset_nat_ip = nullable_htmlentities($row['asset_nat_ip']); $asset_mac = nullable_htmlentities($row['asset_mac']);