From 96ba8827c59fe7b84c848b32026a3bab78a61d8a Mon Sep 17 00:00:00 2001 From: Vladimir Potekhin <46284632+vladimirpotekhin@users.noreply.github.com> Date: Tue, 20 Aug 2024 15:09:55 +0300 Subject: [PATCH] fix(addon-mobile): add `SheetDialog` to pull-to-refresh exclusion (#8611) --- .../components/pull-to-refresh/pull-to-refresh.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/addon-mobile/components/pull-to-refresh/pull-to-refresh.service.ts b/projects/addon-mobile/components/pull-to-refresh/pull-to-refresh.service.ts index 5f3bfbbeedd1..b306aa0dc391 100644 --- a/projects/addon-mobile/components/pull-to-refresh/pull-to-refresh.service.ts +++ b/projects/addon-mobile/components/pull-to-refresh/pull-to-refresh.service.ts @@ -22,7 +22,8 @@ import { } from './pull-to-refresh.providers'; export const MICRO_OFFSET = 10 ** -6; -const EXCLUSION_SELECTORS = 'tui-dialog, tui-dropdown, tui-dropdown-mobile'; +const EXCLUSION_SELECTORS = + 'tui-dialog, tui-dropdown, tui-sheet-dialog, tui-dropdown-mobile'; @Injectable() export class TuiPullToRefreshService extends Observable {