From 1c05f5e5c36f4f27564d4383f91f89d776b3812e Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 14 Dec 2025 11:21:27 +0200 Subject: [PATCH] feat(breadcrumb): disable tooltip animation for faster input --- apps/client/src/widgets/layout/StatusBar.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/client/src/widgets/layout/StatusBar.tsx b/apps/client/src/widgets/layout/StatusBar.tsx index 48269311c..ba252a778 100644 --- a/apps/client/src/widgets/layout/StatusBar.tsx +++ b/apps/client/src/widgets/layout/StatusBar.tsx @@ -81,6 +81,7 @@ function StatusBarDropdown({ children, icon, text, buttonClassName, titleOptions ...titleOptions?.popperConfig, strategy: "fixed" }, + animation: false, ...titleOptions }} dropdownOptions={{ @@ -120,6 +121,7 @@ function StatusBarButton({ className, icon, text, title, active, ...restProps }: placement: "top", fallbackPlacements: [ "top" ], popperConfig: { strategy: "fixed" }, + animation: false, title });