mirror of
https://github.com/Lissy93/dashy.git
synced 2025-12-06 16:43:13 +01:00
🔀 Merge pull request #1752 from RobLoach/patch-1
🩹 Fix compilation warning on comment
This commit is contained in:
commit
4dc2c29d86
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue