@esfaenza/extensions 15.2.22 → 15.2.23

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.
@@ -1042,10 +1042,11 @@ class ExportService {
1042
1042
  jumps = pr.split(".");
1043
1043
  tmpRes = JSON.parse(JSON.stringify(listitem));
1044
1044
  jumps.forEach(pp => { tmpRes = tmpRes[pp]; });
1045
+ let localized = !!loc ? loc.loc(tmpRes) : tmpRes;
1045
1046
  if (!label)
1046
- label = !!loc ? loc.loc(tmpRes) : tmpRes;
1047
+ label = localized;
1047
1048
  else
1048
- label += " " + !!loc ? loc.loc(tmpRes) : tmpRes;
1049
+ label += " " + localized;
1049
1050
  });
1050
1051
  jumps = valuenavigator.split(".");
1051
1052
  tmpRes = JSON.parse(JSON.stringify(listitem));