From a5d3c73249ca80c0d0c98b9139f59e7b45ad229e Mon Sep 17 00:00:00 2001 From: johnnyq Date: Tue, 14 Jan 2025 22:33:31 -0500 Subject: [PATCH] Sort Interface Ports ASC instead of DESC in asset details --- client_asset_details.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_asset_details.php b/client_asset_details.php index 407126c1..097d98ed 100644 --- a/client_asset_details.php +++ b/client_asset_details.php @@ -100,7 +100,7 @@ if (isset($_GET['asset_id'])) { LEFT JOIN networks ON network_id = interface_network_id WHERE asset_id = $asset_id AND interface_archived_at IS NULL - ORDER BY interface_name DESC" + ORDER BY interface_name ASC" ); $interface_count = mysqli_num_rows($sql_related_interfaces);