All Questions
1 question
2
votes
1
answer
2k
views
md-select initialization with i18n
I'm using Angular-material and I18next. Here is my simple example :
<md-select ng-init="val='en'" ng-model="val">
<md-option ng-value="en">{{'en' | i18next}}</md-option>
<...