@syncfusion/ej2-image-editor 26.2.8 → 26.2.10

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.
@@ -26125,7 +26125,7 @@ class ToolbarModule {
26125
26125
  /* eslint-disable-next-line @typescript-eslint/no-explicit-any */
26126
26126
  const imgName = document.getElementById(id + '_imgNametext');
26127
26127
  imgName.value = this.fileName ? this.fileName : fileObj['fileName'];
26128
- if (fileObj['fileType'].toUpperCase() !== 'JPEG') {
26128
+ if (fileObj['fileType'] && fileObj['fileType'].toUpperCase() !== 'JPEG') {
26129
26129
  qualityContainer.style.display = 'none';
26130
26130
  qualitySliderValue.style.display = 'none';
26131
26131
  }