bnstooltips 1.24.0 → 1.24.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/build/index.es.js +3 -1
- package/build/index.es.js.map +1 -1
- package/build/index.js +3 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -8822,7 +8822,9 @@ function AddRequiredLevel(subInfoGroups, item) {
|
|
|
8822
8822
|
function AddRequiredJobs(subInfoGroups, item) {
|
|
8823
8823
|
if (item.classRequired == null || item.classRequired.length == 0)
|
|
8824
8824
|
return;
|
|
8825
|
-
var enJobNames = item.classRequired.map(function (x) {
|
|
8825
|
+
var enJobNames = item.classRequired.map(function (x) {
|
|
8826
|
+
return x.enName != null && x.enName != "" ? x.enName : x.technicalName;
|
|
8827
|
+
});
|
|
8826
8828
|
subInfoGroups.push({
|
|
8827
8829
|
title: "",
|
|
8828
8830
|
texts: [
|