Skip to content

Commit

Permalink
Actually allow multiple in bulk ingest
Browse files Browse the repository at this point in the history
  • Loading branch information
blms committed Dec 18, 2023
1 parent d1b0c1d commit e2f35a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ingest/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ class Meta:
model = Bulk
fields = ['image_server', 'volume_files', 'collections']
widgets = {
'volume_files': ClearableFileInput(attrs={'allow_multiple_selected': True}),
'volume_files': ClearableFileInput(attrs={'allow_multiple_selected': True, 'multiple': True}),
}

0 comments on commit e2f35a6

Please sign in to comment.