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 00baa48 commit d57134bCopy full SHA for d57134b
dash/_utils.py
@@ -147,14 +147,14 @@ def _concat(x):
147
_id = x.component_id_str().replace(".", "\\.") + "." + x.component_property
148
if x.allow_duplicate:
149
if not hashed_inputs:
150
- hashed_inputs = _hash_inputs
+ hashed_inputs = _hash_inputs()
151
# Actually adds on the property part.
152
_id += f"@{hashed_inputs}"
153
return _id
154
155
if no_output:
156
# No output will hash the inputs.
157
- return _hash_inputs
+ return _hash_inputs()
158
159
if isinstance(output, (list, tuple)):
160
return ".." + "...".join(_concat(x) for x in output) + ".."
0 commit comments