mirror of
https://github.com/unraid/webgui.git
synced 2026-03-07 18:39:27 -06:00
Normalize NVMe attributes list
This commit is contained in:
@@ -93,7 +93,7 @@ case "attributes":
|
||||
foreach ($output as $line) {
|
||||
if (strpos($line,':')===false) continue;
|
||||
list($name,$value) = explode(':', $line);
|
||||
echo "<tr><td>-</td><td>".ucfirst(strtolower($name))."</td><td colspan='8'>$value</td></tr>";
|
||||
echo "<tr><td>-</td><td>".ucfirst(strtolower($name))."</td><td colspan='8'>".trim($value)."</td></tr>";
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user