Skip to content

Commit

Permalink
Selectize user email inputs on create pages
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnavy committed Apr 29, 2024
1 parent 70654f0 commit 2ae9ae6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions html/RTIR/Create.html
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
</div>
<div class="value col-9">
<& /Elements/EmailInput,
Name => 'Requestors', Default => $ARGS{'Requestors'}, Size => undef,
Name => 'Requestors', Default => $ARGS{'Requestors'}, Size => undef, AutocompleteMultiple => 1,
&>
</div>
</div>
Expand All @@ -265,7 +265,7 @@
</div>
<div class="value col-9">
<& /Elements/EmailInput,
Name => 'Cc', Default => $ARGS{'Cc'}, Size => undef,
Name => 'Cc', Default => $ARGS{'Cc'}, Size => undef, AutocompleteMultiple => 1,
&>
</div>
</div>
Expand All @@ -277,7 +277,7 @@
</div>
<div class="value col-9">
<& /Elements/EmailInput,
Name => 'AdminCc', Default => $ARGS{'AdminCc'}, Size => undef,
Name => 'AdminCc', Default => $ARGS{'AdminCc'}, Size => undef, AutocompleteMultiple => 1,
&>
</div>
</div>
Expand Down

0 comments on commit 2ae9ae6

Please sign in to comment.