ps-toolkit-ui 1.4.35 → 1.4.36
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 -3
- 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/components/table/row/table.row.component.js +2 -4
- package/fesm2015/ps-toolkit-ui.js +1 -3
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2713,9 +2713,7 @@
|
|
|
2713
2713
|
p.Controller = option.Controller;
|
|
2714
2714
|
p.Action = r.name;
|
|
2715
2715
|
p.Accesses = _this.row.Options.filter(function (x) { return x.ParentId === option.Id; });
|
|
2716
|
-
|
|
2717
|
-
p.Accesses.forEach(function (x) { return x.Url = x.Url.replace('{}', r.name.toLowerCase()); });
|
|
2718
|
-
console.log(p.Accesses, 2222);
|
|
2716
|
+
p.Accesses.forEach(function (x) { return x.Url = x.Url.replace('{action}', r.name.toLowerCase()); });
|
|
2719
2717
|
r.table.permissions = p;
|
|
2720
2718
|
if (r.table.form) {
|
|
2721
2719
|
r.table.form.url = option.Url + 'insert';
|