mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
fix invalid display for negative values (eg. showing growth/shrinkage) and preserve empty ("" or undefined), not show 0B
This commit is contained in:
parent
bb1b408388
commit
b1f7d01a71
@ -510,7 +510,7 @@ export class et2_vfsSize extends et2_description
|
|||||||
{
|
{
|
||||||
static readonly _attributes : any = {
|
static readonly _attributes : any = {
|
||||||
"value": {
|
"value": {
|
||||||
"type": "integer"
|
"type": "any" // not using "integer", as we use parseInt on everything not a number, but want to show empty of "" or undefined, not 0B
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
@ -531,9 +531,15 @@ export class et2_vfsSize extends et2_description
|
|||||||
{
|
{
|
||||||
size = parseInt(size);
|
size = parseInt(size);
|
||||||
}
|
}
|
||||||
if(!size)
|
if(Number.isNaN(size))
|
||||||
{
|
{
|
||||||
size = 0;
|
return '';
|
||||||
|
}
|
||||||
|
let sign = '';
|
||||||
|
if (size < 0)
|
||||||
|
{
|
||||||
|
sign = '-';
|
||||||
|
size = -size;
|
||||||
}
|
}
|
||||||
const units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
const units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
||||||
let i = 0;
|
let i = 0;
|
||||||
@ -542,7 +548,7 @@ export class et2_vfsSize extends et2_description
|
|||||||
size /= 1024;
|
size /= 1024;
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
return size.toFixed(i == 0 ? 0 : 1) + ' ' + units[i];
|
return sign+size.toFixed(i == 0 ? 0 : 1) + ' ' + units[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
set_value(_value)
|
set_value(_value)
|
||||||
|
Loading…
Reference in New Issue
Block a user