ntk-cms-api 1.2.108 → 1.2.109
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/ntk-cms-api.umd.js +4 -4
- package/bundles/ntk-cms-api.umd.js.map +1 -1
- package/bundles/ntk-cms-api.umd.min.js +1 -1
- package/bundles/ntk-cms-api.umd.min.js.map +1 -1
- package/esm2015/lib/common/accessHelper.js +5 -5
- package/esm2015/lib/models/entity/estate/estatePropertyHistoryModel.js +1 -1
- package/fesm2015/ntk-cms-api.js +4 -4
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/estate/estatePropertyHistoryModel.d.ts +1 -0
- package/package.json +1 -1
|
@@ -519,10 +519,10 @@
|
|
|
519
519
|
this.AccessWatchFields = {};
|
|
520
520
|
this.AccessSearchFields = {};
|
|
521
521
|
access.fieldsInfo.filter(function (item) {
|
|
522
|
-
_this.AccessAddFields[item.fieldName] = item.accessAddField;
|
|
523
|
-
_this.AccessEditFields[item.fieldName] = item.accessEditField;
|
|
524
|
-
_this.AccessWatchFields[item.fieldName] = item.accessWatchField;
|
|
525
|
-
_this.AccessSearchFields[item.fieldName] = item.accessSearchField;
|
|
522
|
+
_this.AccessAddFields[item.fieldName.toLowerCase()] = item.accessAddField;
|
|
523
|
+
_this.AccessEditFields[item.fieldName.toLowerCase()] = item.accessEditField;
|
|
524
|
+
_this.AccessWatchFields[item.fieldName.toLowerCase()] = item.accessWatchField;
|
|
525
|
+
_this.AccessSearchFields[item.fieldName.toLowerCase()] = item.accessSearchField;
|
|
526
526
|
});
|
|
527
527
|
};
|
|
528
528
|
return AccessHelper;
|