feat(breadcrumb): disable tooltip animation for faster input

This commit is contained in:
Elian Doran 2025-12-14 11:21:27 +02:00
parent e043f30cc6
commit 1c05f5e5c3
No known key found for this signature in database

View File

@ -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
});