Hello there, Boolean values show up empty in a data table. You can reproduce with the following code: ``` df = pd.DataFrame({'boolean_column': [True, False, True]}) app.layout = html.Div(children=[ dt.DataTable( rows=df.to_dict('records'), columns=df.columns, editable=False, filterable=True, sortable=True, id='datatable' ), ]) ``` As a workaround I used `rows=df.astype(str).to_dict('records')`
Hello there,
Boolean values show up empty in a data table. You can reproduce with the following code:
As a workaround I used
rows=df.astype(str).to_dict('records')