Dash AG Grid Filter not working in Firefox

My AgGrid filtering works flawless with Chrome and Opera, but in Firefox clicking on a checkbox has no effect. There are no console outputs, nor any errors.

Versions:
Python: Tested on 3.13.3 and 3.11.9
Dash: 2.18.2
Firefox: 140.0.1
OS: Win10

Minimum working Example

import dash
from dash import html
import dash_ag_grid as dag
import sys
print(sys.version)

data = [
    {"Name": "Alice", "Age": 24, "Country": "USA"},
    {"Name": "Bob", "Age": 30, "Country": "Canada"},
    {"Name": "Charlie", "Age": 18, "Country": "UK"},
]

app = dash.Dash(__name__)

grid = dag.AgGrid(
    id="my-grid",
    rowData=data,
    enableEnterpriseModules=True,
    columnDefs=[
        {"field": "Name"},
        {"field": "Age"},
        {"field": "Country"}
    ],
    defaultColDef={
        "filter": True,
    }
)

app.layout = html.Div([grid])

if __name__ == "__main__":
    print()
    app.run_server(debug=True)  # Access at http://127.0.0.1:8050/

hi @TLK123
we have not been able to replicate this bug. It looks like it works correctly on our end.
What DAG version are you using?

Clipboard-20250627-132403-061

Hello,
DAG version 31.3.1

sorry, @TLK123 we couldn’t replicate this bug. It works for us.