Skip to content

Commit 4dc2c29

Browse files
authored
🔀 Merge pull request #1752 from RobLoach/patch-1
🩹 Fix compilation warning on comment
2 parents 535ca07 + 99fd2e0 commit 4dc2c29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Widgets/GlNetworkInterfaces.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default {
6868
networks.push({
6969
name: network.interface_name,
7070
speed: network.speed,
71-
online: network.speed ? 'up' : 'down', //v3 to v4 is_up no longer seems to be a default response field
71+
online: network.speed ? 'up' : 'down', // v3 to v4 is_up no longer seems to be a default response field
7272
currentDownload: network.bytes_recv,
7373
currentUpload: network.bytes_sent,
7474
totalDownload: network.bytes_recv_gauge,

0 commit comments

Comments
 (0)