diff --git a/html/includes/table/devices.inc.php b/html/includes/table/devices.inc.php
index 18d407bd85..18cd6e8d3c 100644
--- a/html/includes/table/devices.inc.php
+++ b/html/includes/table/devices.inc.php
@@ -208,8 +208,8 @@ foreach (dbFetchRows($sql, $param) as $device) {
}
if ($subformat == 'detail') {
- $platform = $device['hardware'] . '
' . $device['features'];
- $os = $device['os_text'] . '
' . $device['version'];
+ $platform = $device['hardware'];
+ $os = $device['os_text'] . '
' . $device['version'] . (empty($device['features'])? "" : " ({$device['features']})");
$device['ip'] = inet6_ntop($device['ip']);
$uptime = formatUptime($device['uptime'], 'short');
$hostname .= '
' . get_device_name($device);