Merge pull request #239 from andryyy/patch-1

Do not fail on duplicates in identities
This commit is contained in:
Francis Lachapelle
2018-01-22 08:24:09 -05:00
committed by GitHub

View File

@@ -32,7 +32,7 @@
<label><var:string label:value="From"/></label>
<md-select name="from"
ng-model="editor.message.editable.from">
<md-option ng-value="identity" ng-repeat="identity in editor.identities">{{identity}}</md-option>
<md-option ng-value="identity" ng-repeat="identity in editor.identities track by $index">{{identity}}</md-option>
</md-select>
</md-input-container>
<div flex="flex"><!-- spacer --></div>