bxs-tools-ui 1.0.24 → 1.0.25
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/lib/bxs-utils/index.js
CHANGED
|
@@ -1472,7 +1472,7 @@ function setPersonAgeOptions(personData) {
|
|
|
1472
1472
|
if (options.length && options.every(function (o) {
|
|
1473
1473
|
return o.val !== ele.value;
|
|
1474
1474
|
})) {
|
|
1475
|
-
ele.value = options[0];
|
|
1475
|
+
ele.value = options[0].val;
|
|
1476
1476
|
|
|
1477
1477
|
if (birthday) {
|
|
1478
1478
|
birthday.value = null;
|
package/lib/index.js
CHANGED
|
@@ -1480,7 +1480,7 @@ function setPersonAgeOptions(personData) {
|
|
|
1480
1480
|
if (options.length && options.every(function (o) {
|
|
1481
1481
|
return o.val !== ele.value;
|
|
1482
1482
|
})) {
|
|
1483
|
-
ele.value = options[0];
|
|
1483
|
+
ele.value = options[0].val;
|
|
1484
1484
|
|
|
1485
1485
|
if (birthday) {
|
|
1486
1486
|
birthday.value = null;
|
|
@@ -2346,7 +2346,7 @@ function setPersonAgeOptions(personData) {
|
|
|
2346
2346
|
if (options.length && options.every(function (o) {
|
|
2347
2347
|
return o.val !== ele.value;
|
|
2348
2348
|
})) {
|
|
2349
|
-
ele.value = options[0];
|
|
2349
|
+
ele.value = options[0].val;
|
|
2350
2350
|
|
|
2351
2351
|
if (birthday) {
|
|
2352
2352
|
birthday.value = null;
|
package/lib/person-info/index.js
CHANGED
|
@@ -2346,7 +2346,7 @@ function setPersonAgeOptions(personData) {
|
|
|
2346
2346
|
if (options.length && options.every(function (o) {
|
|
2347
2347
|
return o.val !== ele.value;
|
|
2348
2348
|
})) {
|
|
2349
|
-
ele.value = options[0];
|
|
2349
|
+
ele.value = options[0].val;
|
|
2350
2350
|
|
|
2351
2351
|
if (birthday) {
|
|
2352
2352
|
birthday.value = null;
|
|
@@ -2346,7 +2346,7 @@ function setPersonAgeOptions(personData) {
|
|
|
2346
2346
|
if (options.length && options.every(function (o) {
|
|
2347
2347
|
return o.val !== ele.value;
|
|
2348
2348
|
})) {
|
|
2349
|
-
ele.value = options[0];
|
|
2349
|
+
ele.value = options[0].val;
|
|
2350
2350
|
|
|
2351
2351
|
if (birthday) {
|
|
2352
2352
|
birthday.value = null;
|