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 fd57929 commit 88a4cd7Copy full SHA for 88a4cd7
src/main/js/components/dropdowns/templates.js
@@ -37,7 +37,10 @@ function dropdown() {
37
duration: 250,
38
onShow: (instance) => {
39
// Make sure only one instance is visible at all times in case of breadcrumb
40
- if(instance.reference.classList.contains('hoverable-model-link') || instance.reference.classList.contains('hoverable-children-model-link')) {
+ if (
41
+ instance.reference.classList.contains("hoverable-model-link") ||
42
+ instance.reference.classList.contains("hoverable-children-model-link")
43
+ ) {
44
const dropdowns = document.querySelectorAll("[data-tippy-root]");
45
Array.from(dropdowns).forEach((element) => {
46
// Check if the Tippy.js instance exists
0 commit comments