File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ export abstract class ViewWithBottomSheetBase extends View {
135
135
this . _bottomSheetContext . closeCallback = null ;
136
136
}
137
137
const whenClosedCallback = ( ) => {
138
+ this . _bottomSheetClosed ( ) ;
138
139
if ( typeof options . closeCallback === 'function' ) {
139
140
options . closeCallback . apply ( undefined , originalArgs ) ;
140
141
}
Original file line number Diff line number Diff line change @@ -465,7 +465,7 @@ export class ViewWithBottomSheet extends ViewWithBottomSheetBase {
465
465
}
466
466
467
467
_bottomSheetClosed ( ) {
468
- // super already closed we are just a mixin
468
+ // super already called we are just a mixin
469
469
470
470
if ( this . bottomSheetController ) {
471
471
this . bottomSheetController . delegate = null ;
You can’t perform that action at this time.
0 commit comments