You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I try to use tooltips for each Button inside a ToggleButtonsSingle component, the selected value is set to the tooltip value, not the one from the button.
@solara.componentdefPage():
withsolara.ToggleButtonsSingle(value=map_type):
withsolara.Tooltip("Stacks each layer on top of each other."):
solara.Button("Stack", icon_name="mdi-layers-triple", value="stack", text=True)
withsolara.Tooltip("Creates a split in the map that you can move."):
solara.Button("Split", icon_name="mdi-arrow-split-vertical", value="split", text=True)
solara.Text(map_type.value)
The text was updated successfully, but these errors were encountered:
This is somewhat related to #683
If I try to use tooltips for each Button inside a ToggleButtonsSingle component, the selected value is set to the tooltip value, not the one from the button.
Correct behavior (but no tooltips)
Issue when trying to use tooltips
The text was updated successfully, but these errors were encountered: