Describe your context
Please provide us your environment, so we can easily reproduce the issue.
replace the result of pip list | grep dash below
dash 2.0.0
dash-bootstrap-components 1.0.0
if frontend related, tell us your Browser, Version and OS
OS: [e.g. iOS] Windows
Browser [e.g. chrome, safari]: Chrome 96.0x, Edge 96.0x, Firefox 90.0 All report same Javascript error
Version [e.g. 22]
Describe the bug
DataTable with row_selectable="single or multi" and filter_action="native" seems to cause the JS error. This especially happens when data=[] and colums=[] or empty values.
Expected behavior
JS Error should not occur
Screenshots
This is the simplest example.
import dash
import dash_bootstrap_components as dbc
from dash import html
from dash.html import Div, Span
from dash_bootstrap_components import Row, Col
from dash import dcc
from dash import dash_table
layout = \
Div([
dash_table.DataTable(id='tasks-table',
row_selectable='single',
tooltip_duration=None,
page_size=10,
filter_action='native',
),
])
app = dash.Dash(__name__)
app.layout = layout
if __name__ == '__main__':
app.run_server(debug=True, host='0.0.0.0', port=8000)
The text was updated successfully, but these errors were encountered:
Describe your context
Please provide us your environment, so we can easily reproduce the issue.
pip list | grep dashbelowif frontend related, tell us your Browser, Version and OS
Describe the bug
DataTable with row_selectable="single or multi" and filter_action="native" seems to cause the JS error. This especially happens when data=[] and colums=[] or empty values.
Expected behavior
JS Error should not occur
Screenshots
This is the simplest example.
The text was updated successfully, but these errors were encountered: