🔀 Merge pull request #1752 from RobLoach/patch-1

🩹 Fix compilation warning on comment
This commit is contained in:
Alicia Sykes 2025-07-18 19:35:27 +01:00 committed by GitHub
commit 4dc2c29d86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,7 +68,7 @@ export default {
networks.push({
name: network.interface_name,
speed: network.speed,
online: network.speed ? 'up' : 'down', //v3 to v4 is_up no longer seems to be a default response field
online: network.speed ? 'up' : 'down', // v3 to v4 is_up no longer seems to be a default response field
currentDownload: network.bytes_recv,
currentUpload: network.bytes_sent,
totalDownload: network.bytes_recv_gauge,