1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 17:59:55 +02:00
This commit is contained in:
Daniel Neto 2024-09-20 15:23:24 -03:00
parent e250ccc174
commit a4844df842

View file

@ -33,17 +33,17 @@
{ {
label: 'System', label: 'System',
data: [(actualUsedSpace / (1024 * 1024 * 1024)).toFixed(2)], data: [(actualUsedSpace / (1024 * 1024 * 1024)).toFixed(2)],
backgroundColor: '#36A2EB99' backgroundColor: '#36A2EB77'
}, },
{ {
label: 'Videos', label: 'Videos',
data: [(directoryUsage / (1024 * 1024 * 1024)).toFixed(2)], data: [(directoryUsage / (1024 * 1024 * 1024)).toFixed(2)],
backgroundColor: '#36A2EBAA' backgroundColor: '#36A2EBCC'
}, },
{ {
label: 'Free', label: 'Free',
data: [(freeSpace / (1024 * 1024 * 1024)).toFixed(2)], data: [(freeSpace / (1024 * 1024 * 1024)).toFixed(2)],
backgroundColor: '#36A2EB55' backgroundColor: '#36A2EB33'
} }
] ]
}; };