This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Description
I have a callback function of the selected cells properties. When the user clicks ones of the cells the callback is fired. However the second time the user clicks the same cell, the callback is not fired. Is this correct behavior or a bug?
@app.callback( Output('test', 'children'), [ Input('table', 'selected_cells'), ]) def test(selected_cells): return 'test_done'