@net7/boilerplate-arianna 4.7.0 → 4.7.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.
- package/esm2020/lib/layouts/search-layout/search-layout.ds.mjs +3 -2
- package/fesm2015/net7-boilerplate-arianna.mjs +3 -1
- package/fesm2015/net7-boilerplate-arianna.mjs.map +1 -1
- package/fesm2020/net7-boilerplate-arianna.mjs +2 -1
- package/fesm2020/net7-boilerplate-arianna.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5058,7 +5058,8 @@ class AwSearchLayoutDS extends LayoutDataSource {
|
|
|
5058
5058
|
.forEach((f) => {
|
|
5059
5059
|
f.data.forEach((dataItem) => {
|
|
5060
5060
|
const key = dataItem.label;
|
|
5061
|
-
dataItem.label =
|
|
5061
|
+
dataItem.label = (this.configKeys[key]?.label
|
|
5062
|
+
|| helpers.prettifySnakeCase(key, this.prettifyLabels[key]));
|
|
5062
5063
|
});
|
|
5063
5064
|
});
|
|
5064
5065
|
}
|