Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Select widget items not displayed on full screen when embedded on expansion panel #602

Closed
dfguerrerom opened this issue Oct 14, 2022 · 0 comments
Labels
bug Something isn't working

Comments

@dfguerrerom
Copy link
Collaborator

Describe the bug
Similar as widgetti/ipyvuetify#141, Select items are not displayed on the latest FullScreen implementation of sepal_ui when the element is embedded on an ExpansionPanel.

To Reproduce

from ipyleaflet import WidgetControl
import ipyvuetify as v
from sepal_ui.mapping import SepalMap, FullScreenControl

expansion = v.ExpansionPanels(
    children=[
        v.ExpansionPanel(
            children=[
                v.ExpansionPanelHeader(children=["header"]),
                v.ExpansionPanelContent(children=[
                    v.Select(items=[f"{i}" for i in range(10)])
                ])
            ]
        )
    ]
)

map_=SepalMap()
map_.add_control(
    FullScreenControl(map_, position="topleft", fullscreen=True, fullapp=True)
)
control = WidgetControl(widget=expansion)
map_.add_control(control)
map_

Expected behavior
Just display items as you would expect without full screen

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant