jelhan/croodle

View on GitHub
app/components/language-select.hbs

Summary

Maintainability
Test Coverage
{{! template-lint-disable require-input-label }}
<select class="language-select" {{on "change" this.handleChange}}>
  {{#each-in this.locales as |localeKey localeName|}}
    <option value={{localeKey}} selected={{eq localeKey this.currentLocale}}>
      {{localeName}}
    </option>
  {{/each-in}}
</select>