We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dc820a commit ae9ce28Copy full SHA for ae9ce28
src/ui-persistent-bottomsheet/angular/module.ts
@@ -98,6 +98,8 @@ const sbsMeta: ViewClassMeta = {
98
99
if (childView.id === BOTTOMSHEET) {
100
pbs.bottomSheet = childView;
101
+ } else {
102
+ pbs.addChild(childView);
103
}
104
},
105
removeChild: (parent: NgView, child: NgView) => {
@@ -106,6 +108,8 @@ const sbsMeta: ViewClassMeta = {
106
108
107
109
110
pbs.bottomSheet = null;
111
112
+ pbs.removeChild(childView);
113
114
115
};
0 commit comments