Skip to content

Commit

Permalink
[DONE] Change minimum characters for Discipline and Channel select2 i…
Browse files Browse the repository at this point in the history
…n video edit (#1045)

* change minimum lenght on select2 for UX

* revert space on a file
  • Loading branch information
JoshuaBaubry authored Feb 2, 2024
1 parent ecefb2e commit 76196db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pod/video/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -982,8 +982,8 @@ class Meta(object):
widgets = {
"owner": OwnerWidget,
"additional_owners": AddOwnerWidget,
"channel": ChannelWidget,
"discipline": DisciplineWidget,
"channel": ChannelWidget(attrs={'data-minimum-input-length': 0}),
"discipline": DisciplineWidget(attrs={'data-minimum-input-length': 0}),
"date_evt": widgets.AdminDateWidget,
"restrict_access_to_groups": AddAccessGroupWidget,
"video": CustomClearableFileInput,
Expand Down

0 comments on commit 76196db

Please sign in to comment.