🩹 Fix compilation warning on comment

Was getting the following error...

> 71:50  error  Expected exception block, space or tab after '//' in comment  spaced-comment
This commit is contained in:
Rob Loach 2024-11-21 01:34:11 -05:00 committed by GitHub
parent a62c3f6cd8
commit 99fd2e0f72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,7 +68,7 @@ export default {
networks.push({ networks.push({
name: network.interface_name, name: network.interface_name,
speed: network.speed, 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, currentDownload: network.bytes_recv,
currentUpload: network.bytes_sent, currentUpload: network.bytes_sent,
totalDownload: network.bytes_recv_gauge, totalDownload: network.bytes_recv_gauge,