ps-toolkit-ui 0.0.171 → 0.0.172
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.
- package/bundles/ps-toolkit-ui.umd.js +1 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/table.class.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +1 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -7209,7 +7209,7 @@
|
|
|
7209
7209
|
TableClass.prototype.showInsertModal = function (cId) {
|
|
7210
7210
|
if (cId === void 0) { cId = null; }
|
|
7211
7211
|
var insertAccess = this.permissions.getAccess(exports.PermissionAccessTypeEnum.Insert);
|
|
7212
|
-
this.form.url = this.form.baseUrl = this.url + 'Insert' + cId ?
|
|
7212
|
+
this.form.url = this.form.baseUrl = this.url + 'Insert' + (cId ? '/' + cId : '');
|
|
7213
7213
|
this.form.name = insertAccess.Name;
|
|
7214
7214
|
this.form.method = exports.Method.Post;
|
|
7215
7215
|
this.form.inputs.filter(function (x) { return x.inEditDisabled; }).forEach(function (x) { return x.disabled = false; });
|