Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,9 @@
/* Disallow width auto-resizing with the `Select` button. */
max-width: 0;
}

.log-level-select-option-text-tooltip {
/* Disable pointer events to prevent tooltips from blocking interaction with underlying
elements. */
pointer-events: none;
}
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ const LogSelectOption = ({
</ListItemDecorator>
<Tooltip
placement={"left"}
slotProps={{root: {className: "log-level-select-option-text-tooltip"}}}
title={
<Stack
alignItems={"center"}
Expand Down
Loading