We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a48dd80 commit 0b2d250Copy full SHA for 0b2d250
mesa/visualization/solara_viz.py
@@ -158,7 +158,11 @@ def do_reseed():
158
"""Update the random seed for the model."""
159
reactive_seed.value = model.random.random()
160
161
- dependencies = [current_step.value, reactive_seed.value]
+ dependencies = [
162
+ *list(model_parameters.values()),
163
+ current_step.value,
164
+ reactive_seed.value,
165
+ ]
166
167
# if space drawer is disabled, do not include it
168
layout_types = [{"Space": "default"}] if space_drawer else []
0 commit comments