fix: missing variable
Signed-off-by: Andrew Calcutt <acalcutt@techidiots.net>
This commit is contained in:
parent
dbdf2a1075
commit
fa3dac46ca
1 changed files with 1 additions and 1 deletions
|
|
@ -516,7 +516,7 @@ function start(opts) {
|
||||||
}
|
}
|
||||||
if (data.filesize) {
|
if (data.filesize) {
|
||||||
let suffix = 'kB';
|
let suffix = 'kB';
|
||||||
let size = parseInt(data_.filesize, 10) / 1024;
|
let size = parseInt(tileJSON.filesize, 10) / 1024;
|
||||||
if (size > 1024) {
|
if (size > 1024) {
|
||||||
suffix = 'MB';
|
suffix = 'MB';
|
||||||
size /= 1024;
|
size /= 1024;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue