Skip to content

Commit 7caf24b

Browse files
committed
🔪 Remove invalid id characters
1 parent 6ff7a6e commit 7caf24b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash/dash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ def _validate_callback(self, output, inputs, state):
674674
name.lower(), str(arg), name
675675
))
676676

677-
invalid_characters = ['.', ':', '[', ']']
677+
invalid_characters = ['.']
678678
if any(x in arg.component_id for x in invalid_characters):
679679
raise exceptions.InvalidComponentIdError('''The element
680680
`{}` contains {} in its ID.

0 commit comments

Comments
 (0)