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.js
CHANGED
|
@@ -8830,7 +8830,9 @@ function AddRequiredLevel(subInfoGroups, item) {
|
|
|
8830
8830
|
function AddRequiredJobs(subInfoGroups, item) {
|
|
8831
8831
|
if (item.classRequired == null || item.classRequired.length == 0)
|
|
8832
8832
|
return;
|
|
8833
|
-
var enJobNames = item.classRequired.map(function (x) {
|
|
8833
|
+
var enJobNames = item.classRequired.map(function (x) {
|
|
8834
|
+
return x.enName != null && x.enName != "" ? x.enName : x.technicalName;
|
|
8835
|
+
});
|
|
8834
8836
|
subInfoGroups.push({
|
|
8835
8837
|
title: "",
|
|
8836
8838
|
texts: [
|