diff --git a/components/dash-table/tests/selenium/test_column.py b/components/dash-table/tests/selenium/test_column.py index 15e140bade..3b9e305f8c 100644 --- a/components/dash-table/tests/selenium/test_column.py +++ b/components/dash-table/tests/selenium/test_column.py @@ -20,6 +20,9 @@ def get_app(props=dict()): baseProps["filter_action"] = "native" baseProps["merge_duplicate_headers"] = True + # first col is normally only 60px, make it wider since we're adding + # all these actions and need to interact with them + baseProps["style_cell_conditional"][0].update(width=120, maxWidth=120, minWidth=120) baseProps.update(props) app.layout = DataTable(**baseProps)