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 b315cf6 commit 28d4b2aCopy full SHA for 28d4b2a
core/src/components/modal/gestures/sheet.ts
@@ -240,7 +240,8 @@ export const createSheetGesture = (
240
* which would impact performance significantly.
241
*/
242
const targetEl = findClosestIonContent(detail.event.target! as HTMLElement);
243
- cachedScrollEl = targetEl && isIonContent(targetEl) ? getElementRoot(targetEl).querySelector('.inner-scroll') : targetEl;
+ cachedScrollEl =
244
+ targetEl && isIonContent(targetEl) ? getElementRoot(targetEl).querySelector('.inner-scroll') : targetEl;
245
246
/**
247
* If expandToScroll is disabled, we need to swap
0 commit comments