WildMeOrg / scout

MIT License
6 stars 5 forks source link

Box H output fixed #51

Closed simbamangu closed 1 year ago

simbamangu commented 1 year ago

Fixed two places where box.y was being assigned to Box H instead of box.h.

e.g. from

fields['Box H'] = typeof(box.h) !== 'undefined' ? box.y : '';

to

fields['Box H'] = typeof(box.h) !== 'undefined' ? box.h : '';