ps-toolkit-ui 1.4.27 → 1.4.28

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.
@@ -7424,6 +7424,9 @@
7424
7424
  TableClass.prototype.showInsertModal = function (cId) {
7425
7425
  if (cId === void 0) { cId = null; }
7426
7426
  var insertAccess = this.permissions.getAccess(exports.PermissionAccessTypeEnum.Insert);
7427
+ console.log(insertAccess);
7428
+ console.log(cId, 'cId');
7429
+ console.log(insertAccess.Url.replace('{}', this.permissions.RelatedId) + (cId ? '/' + cId : ''));
7427
7430
  this.form.url = this.form.baseUrl = insertAccess.Url.replace('{}', this.permissions.RelatedId) + (cId ? '/' + cId : '');
7428
7431
  this.form.name = insertAccess.Name;
7429
7432
  this.form.method = exports.Method.Post;