Display Asset Icon in asset Details

This commit is contained in:
johnnyq 2023-09-19 18:00:10 -04:00
parent f3b949499d
commit 6bccc61b4a
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ if (isset($_GET['asset_id'])) {
<div class="card card-dark">
<div class="card-body">
<h3 class="text-bold"><?php echo $asset_name; ?></h3>
<h3 class="text-bold"><i class="fa fa-fw text-secondary fa-<?php echo $device_icon; ?> mr-3"></i><?php echo $asset_name; ?></h3>
<?php if (!empty($asset_description)) { ?>
<div class="text-secondary"><?php echo $asset_description; ?></div>
<?php } ?>