Skip to content

Commit 56cf7a6

Browse files
committed
Merge branch 'candidate-1.10.4' into candidate-1.12.0
2 parents 44f0c50 + 592f1ab commit 56cf7a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/PropertyExt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213
return this[__prop_ + id] !== undefined && this[__prop_ + id] !== this[id + "_default"]();
214214
};
215215
this[id + "_exists"] = function () {
216-
return this[__prop_ + id] !== undefined && this[id + "_default"]() !== undefined;
216+
return this[__prop_ + id] !== undefined || this[id + "_default"]() !== undefined;
217217
};
218218
this[id + "_default"] = function (_) {
219219
if (!arguments.length) return this[__default_ + id] !== undefined ? this[__default_ + id] : meta.defaultValue;

0 commit comments

Comments
 (0)