mirror of
https://github.com/django-components/django-components.git
synced 2025-08-03 13:58:16 +00:00
Use list instead of tuple to avoid errors with missing comma.
This commit is contained in:
parent
8abf8c5e3b
commit
ebb180c540
4 changed files with 5 additions and 5 deletions
|
@ -26,7 +26,7 @@ class Component(object):
|
|||
class Media:
|
||||
template = None
|
||||
css = {}
|
||||
js = ()
|
||||
js = []
|
||||
|
||||
# This variable represents the global component registry
|
||||
registry = ComponentRegistry()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue