From 46955e4ed922c5b14c4dde1c35acdbedb2de1c7f Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Wed, 24 Jun 2020 02:55:20 -0700 Subject: [PATCH] Up max speakers to 100 --- app/views/proposals/_proposal_form.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/proposals/_proposal_form.html.haml b/app/views/proposals/_proposal_form.html.haml index e4d72ae3..5131790e 100644 --- a/app/views/proposals/_proposal_form.html.haml +++ b/app/views/proposals/_proposal_form.html.haml @@ -69,6 +69,6 @@ $(document).ready(function() { $('#event_speaker_ids').selectize({ plugins: ['remove_button'], - maxItems: 5 + maxItems: 100 } ) });