@adlfe/campaign-management-library 2.10.4 → 2.10.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5472,11 +5472,11 @@
5472
5472
  };
5473
5473
  NewNumberBasesComponent.prototype.onFileSelected = function (event) {
5474
5474
  var file = event.target.files;
5475
- var MAXIMUM_SIZE = 10 * 1024 * 1024;
5475
+ var MAXIMUM_SIZE = 30 * 1024 * 1024;
5476
5476
  if (file.length === 0)
5477
5477
  return;
5478
5478
  if (file[0].size > MAXIMUM_SIZE) {
5479
- this.toastr.error('Upload media failed, max size 10mb');
5479
+ this.toastr.error('Upload media failed, max size 30mb');
5480
5480
  return;
5481
5481
  }
5482
5482
  // this.uploadMediaService(file[0]);