Skip to content

Commit 1ad2cfb

Browse files
committed
FIX: ensures multi-select dropdown is correctly working
1 parent 35b96b5 commit 1ad2cfb

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed
Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
<label class="control-label" for="{{concat 'user-' elementId}}">{{{field.name}}}</label>
22
<div class='controls'>
3-
{{multi-select id=(concat 'user-' elementId) content=field.options values=values none=noneLabel}}
4-
3+
{{multi-select
4+
id=(concat 'user-' elementId)
5+
content=field.options
6+
value=values
7+
valueProperty=null
8+
nameProperty=null
9+
options=(hash
10+
none=noneLabel
11+
)
12+
}}
13+
514
{{#if field.required}}<span class='required'>*</span>{{/if}}
615
<div class="instructions">{{{field.description}}}</div>
716
</div>

0 commit comments

Comments
 (0)