jsx: viewFragment support null or undefined
This commit is contained in:
2
doric-web/dist/index.js
vendored
2
doric-web/dist/index.js
vendored
@@ -2180,7 +2180,7 @@ class Group extends Superview {
|
||||
else if (e instanceof View) {
|
||||
this.addChild(e);
|
||||
}
|
||||
else {
|
||||
else if (!!e) {
|
||||
loge(`Not allowed to add ${typeof e}`);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user