2. In the text field in the component that appears, change "FISH" to "DOG"
**Expected results**
2. Quick filter should update, Sym should now be filtered on DOG
**Actual results**
2. Table does not update
**Additional details and attachments**
![image](https://github.com/user-attachments/assets/5b231022-9461-431a-8b62-e70f5c4c06c4)
**Versions**
Engine Version: 0.35.2
Web UI Version: 0.85.3
Java Version: 11.0.23
Barrage Version: 0.6.0
Browser Name: Chrome 126
OS Name: Linux
deephaven-plugin-ptt-input: 0.0.1
@deephaven/js-plugin-plotly-express: 0.11.2
@deephaven/js-plugin-ui: 0.19.0
Description
When the props passed to
quick_filters
changes, theui.table
does not update to reflect it.Steps to reproduce
_stocks = dx.data.stocks()
@ui.component def my_table(source, column="Sym"): value, set_value = ui.use_state("FISH")
mt = my_table(_stocks, "Sym")