freshworks / crayons

🖍️ Crayons - A UI Kit comprising of web components for building Freshworks Apps!
https://crayons.freshworks.com
219 stars 61 forks source link

fix(file-uploader): correcting MB to KB conversion formula #893

Closed Vignesh-Manogar-E3433 closed 1 year ago

Vignesh-Manogar-E3433 commented 1 year ago

During file validation, we compare the uploaded file size to the permitted file size. We convert the permitted file size from KB to MB.

Conversion previously used was 1MB is 1024KB. Which led to cases where file sizes that shouldn't have passed validation, passed. Now correctly this conversion formula to 1MB is 1000KB.

Checklist:

How Has This Been Tested?