Skip to content

Commit

Permalink
Fix nested parameter updates
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Apr 9, 2024
1 parent b983770 commit 6c199df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/reactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def _process_events(self, events: Dict[str, Any]) -> None:
self_params = {k: v for k, v in params.items() if '.' not in k}
with _syncing(self, list(self_params)):
self.param.update(**self_params)
for k, v in self_params.items():
for k, v in params.items():
if '.' not in k:
continue
*subpath, p = k.split('.')
Expand Down

0 comments on commit 6c199df

Please sign in to comment.