1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2025-07-15 11:57:39 +02:00

Add hostapd-led to fas class in template

This commit is contained in:
billz 2025-04-19 06:06:28 -07:00
parent 97b846b2b6
commit 73df916184
3 changed files with 3 additions and 3 deletions

View File

@ -954,7 +954,7 @@ function renderStatus($hostapd_led, $hostapd_status, $memused_led, $memused, $cp
<div class="col ml-2">
<div class="ml-1 sb-status">Status</div>
<div class="info-item-xs"><span class="icon">
<i id="hostapd-led" class="fas fa-circle <?php echo ($hostapd_led); ?>"></i></span> <?php echo _("Hotspot").' '. _($hostapd_status); ?>
<i class="fas fa-circle hostapd-led <?php echo ($hostapd_led); ?>"></i></span> <?php echo _("Hotspot").' '. _($hostapd_status); ?>
</div>
<div class="info-item-xs"><span class="icon">
<i class="fas fa-circle <?php echo ($memused_led); ?>"></i></span> <?php echo _("Mem Use").': '. htmlspecialchars(strval($memused), ENT_QUOTES); ?>%

View File

@ -20,7 +20,7 @@
</div>
<div class="col">
<button class="btn btn-light btn-icon-split btn-sm service-status float-end">
<span class="icon"><i class="fas fa-circle service-status-<?php echo $state ?>"></i></span>
<span class="icon"><i class="fas fa-circle hostapd-led service-status-<?php echo $state ?>"></i></span>
<span class="text service-status"><?php echo strtolower($interface) .' '. _($state) ?></span>
</button>
</div>

View File

@ -40,7 +40,7 @@
</div>
<div class="col">
<button class="btn btn-light btn-icon-split btn-sm service-status float-end">
<span class="icon text-gray-600"><i class="fas fa-circle service-status-<?php echo $serviceStatus ?>"></i></span>
<span class="icon text-gray-600"><i class="fas fa-circle hostapd-led service-status-<?php echo $serviceStatus ?>"></i></span>
<span class="text service-status">hostapd <?php echo _($serviceStatus) ?></span>
</button>
</div>