The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/app/ui/client/components/selectDropdown.html

18 lines
584 B

<template name="selectDropdown">
<div class="rc-input rc-input--small">
<label class="rc-input__label">
<div class="rc-input__title">{{title}}</div>
<div class="rc-input__wrapper">
<select type="text" class="rc-input__element" placeholder="{{placeholder}}" name="{{name}}">
{{#each option in options}}
{{#if option.selected}}
<option value={{option.value}} selected>{{option.title}}</option>
{{else}}
<option value={{option.value}}>{{option.title}}</option>
{{/if}}
{{/each}}
</select>
</div>
</label>
</div>
</template>