@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.
@@ -5293,11 +5293,11 @@ var NewNumberBasesComponent = /** @class */ (function () {
5293
5293
  };
5294
5294
  NewNumberBasesComponent.prototype.onFileSelected = function (event) {
5295
5295
  var file = event.target.files;
5296
- var MAXIMUM_SIZE = 10 * 1024 * 1024;
5296
+ var MAXIMUM_SIZE = 30 * 1024 * 1024;
5297
5297
  if (file.length === 0)
5298
5298
  return;
5299
5299
  if (file[0].size > MAXIMUM_SIZE) {
5300
- this.toastr.error('Upload media failed, max size 10mb');
5300
+ this.toastr.error('Upload media failed, max size 30mb');
5301
5301
  return;
5302
5302
  }
5303
5303
  // this.uploadMediaService(file[0]);