topics-select.html 278 Bytes
<div class="topics-dropdown">
  <select
    ng-model="vm.topicFilter"
    ng-change="vm.selectTopic()"
    ng-options="topic.title for topic in vm.topics track by topic.slug"
    class="form-control">
    <option value="">-- Selecione um programa --</option>
  </select>
</div>