@eqproject/eqp-dynamic-module 2.3.39 → 2.3.40
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/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +2 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +1 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4090,7 +4090,7 @@ class ListViewFormRecordComponent {
|
|
|
4090
4090
|
printAdditionalInfo(record) {
|
|
4091
4091
|
let out = "";
|
|
4092
4092
|
this.configurations.listViewRecordTitle.forEach((item) => {
|
|
4093
|
-
out += record.AdditionalInfo[item] ? " " + record.AdditionalInfo[item] : "";
|
|
4093
|
+
out += record.AdditionalInfo[item] ? " " + record.AdditionalInfo[item] : " " + item;
|
|
4094
4094
|
});
|
|
4095
4095
|
// throw new Error('Method not implemented.');
|
|
4096
4096
|
return out;
|