Fix tooltips not showing on IconButton
s (#3427)
This PR fixes tooltips not showing on `IconButton`s. The "fix" here is the same hack that we used to fix `on_click` handlers for `ListItem`s, where we introduce another layer of wrapping with an element with an ID set. This PR also adds a story for the `IconButton` so this issue can be tested/observed in isolation. Release Notes: - N/A
This commit is contained in:
parent
8ee84249ec
commit
ee027bc112
4 changed files with 41 additions and 1 deletions
|
@ -65,7 +65,8 @@ impl RenderOnce for IconButton {
|
|||
}
|
||||
}
|
||||
|
||||
button
|
||||
// HACK: Add an additional identified element wrapper to fix tooltips not showing up.
|
||||
div().id(self.id.clone()).child(button)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue