@syncfusion/ej2-filemanager 19.3.53 → 19.3.55

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.
@@ -1771,7 +1771,7 @@ function createVirtualDragElement(parent) {
1771
1771
  parent.dragNodes.push(parent.selectedItems[i]);
1772
1772
  i++;
1773
1773
  }
1774
- if (parent.selectedItems.length == 0 && parent.dragData && parent.dragData.length == 1) {
1774
+ if (parent.selectedItems.length === 0 && parent.dragData && parent.dragData.length === 1) {
1775
1775
  parent.dragNodes.push(getItemName(parent, parent.dragData[0]));
1776
1776
  }
1777
1777
  }
@@ -2289,7 +2289,7 @@ function filter(parent, event) {
2289
2289
  var filterData;
2290
2290
  // eslint-disable-next-line
2291
2291
  var filterDataVal = parent.filterData ? extend(filterData, data, parent.filterData) : data;
2292
- createAjax(parent, filterData, filterSuccess, event, getValue('action', filterDataVal));
2292
+ createAjax(parent, filterDataVal, filterSuccess, event, getValue('action', filterDataVal));
2293
2293
  }
2294
2294
  /**
2295
2295
  * Function to rename the folder/file in File Manager.
@@ -6468,7 +6468,7 @@ var defaultLocale = {
6468
6468
  'Filter-Empty': 'No results found',
6469
6469
  'Filter-Key': 'Try with different filter',
6470
6470
  'Sub-Folder-Error': 'The destination folder is the subfolder of the source folder.',
6471
- "Same-Folder-Error": "The destination folder is the same as the source folder.",
6471
+ 'Same-Folder-Error': 'The destination folder is the same as the source folder.',
6472
6472
  'Access-Denied': 'Access Denied',
6473
6473
  'Access-Details': 'You don"t have permission to access this folder.',
6474
6474
  'Header-Retry': 'File Already Exists',
@@ -9875,7 +9875,7 @@ var DetailsView = /** @__PURE__ @class */ (function () {
9875
9875
  // eslint-disable-next-line
9876
9876
  this.parent.dragData = this.gridObj.getSelectedRecords();
9877
9877
  var dragRow;
9878
- if (this.parent.dragData.length == 0 && dragLi) {
9878
+ if (this.parent.dragData.length === 0 && dragLi) {
9879
9879
  dragRow = this.gridObj.getRowInfo(dragLi);
9880
9880
  }
9881
9881
  if (dragRow) {