jqgrid_utils 1.3.0 → 1.3.1

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.
@@ -617,8 +617,7 @@ async add_link_separator(col_model, url, edit_field, fields, attr='')
617
617
  {
618
618
  pref = pref.slice(0, -1);
619
619
  }
620
- const _cell_val = self.__cell_format(cell_val, format);
621
- cell_val = '<a ' + attr + 'href="' + url + pref + '"> ' + _cell_val + '</a>';
620
+ cell_val = '<a ' + attr + 'href="' + url + pref + '"> ' + cell_val + '</a>';
622
621
  }
623
622
 
624
623
  return cell_val;
package/jqgrid_utils.js CHANGED
@@ -616,8 +616,7 @@ async add_link_separator(col_model, url, edit_field, fields, attr='')
616
616
  {
617
617
  pref = pref.slice(0, -1);
618
618
  }
619
- const _cell_val = self.__cell_format(cell_val, format);
620
- cell_val = '<a ' + attr + 'href="' + url + pref + '"> ' + _cell_val + '</a>';
619
+ cell_val = '<a ' + attr + 'href="' + url + pref + '"> ' + cell_val + '</a>';
621
620
  }
622
621
 
623
622
  return cell_val;
package/package.json CHANGED
@@ -29,5 +29,5 @@
29
29
  {
30
30
  "test": "echo \"Error: no test specified\" && exit 1"
31
31
  },
32
- "version": "1.3.0"
32
+ "version": "1.3.1"
33
33
  }