jsx: viewFragment support null or undefined

This commit is contained in:
pengfei.zhou
2022-07-20 20:58:43 +08:00
committed by osborn
parent 654b63f3c6
commit 7684eaa896
9 changed files with 11 additions and 11 deletions

View File

@@ -716,7 +716,7 @@ var Group = /** @class */ (function (_super) {
else if (e instanceof View) {
this.addChild(e);
}
else {
else if (!!e) {
loge("Not allowed to add " + typeof e);
}
};

View File

@@ -576,7 +576,7 @@ class Group extends Superview {
else if (e instanceof View) {
this.addChild(e);
}
else {
else if (!!e) {
loge(`Not allowed to add ${typeof e}`);
}
}

View File

@@ -2106,7 +2106,7 @@ class Group extends Superview {
else if (e instanceof View) {
this.addChild(e);
}
else {
else if (!!e) {
loge(`Not allowed to add ${typeof e}`);
}
}