Skip to content

Commit

Permalink
#340 updated QuickFiltersSelectMultiple init kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
d.choban committed Feb 4, 2019
1 parent 9797f68 commit b5df007
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arctic/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ class QuickFiltersSelectMultiple(
"""
This widget is used to be able to have a more than one active filters
"""
def __init__(self, attrs):
def __init__(self, attrs=None, **kwargs):
attrs = attrs or {}
attrs['select_multiple'] = True
super().__init__(attrs)
super().__init__(attrs, **kwargs)


class SearchInput(TextInput):
Expand Down

0 comments on commit b5df007

Please sign in to comment.