Skip to content

Commit fa6a16c

Browse files
committed
Add multi_output config value (Always true).
1 parent 8f8d41d commit fa6a16c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dash/dash.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ def serve_layout(self):
321321

322322
def _config(self):
323323
config = {
324+
'multi_output': True,
324325
'url_base_pathname': self.url_base_pathname,
325326
'requests_pathname_prefix': self.config['requests_pathname_prefix']
326327
}
@@ -935,7 +936,9 @@ def add_context(*args, **kwargs):
935936
else:
936937
response = {
937938
'response': {
938-
output.component_property: output_value
939+
'props': {
940+
output.component_property: output_value
941+
}
939942
}
940943
}
941944

0 commit comments

Comments
 (0)