fix(calendar(js)): don't escape HTML characters in repeat select menu

Fixes #4875
pull/281/head
Francis Lachapelle 2019-11-07 09:47:11 -05:00
parent 113f076981
commit 699849caec
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@
ng-model="editor.component.repeat.frequency"
ng-change="editor.changeFrequency($event)"
ng-disabled="editor.component.occurrenceId">
<md-option ng-value="frequency[0]" ng-repeat="frequency in ::editor.frequencies()">{{ frequency[1] }}</md-option>
<md-option ng-value="frequency[0]" ng-repeat="frequency in ::editor.frequencies()" ng-bind-html="frequency[1]"><!-- frequency --></md-option>
</md-select>
</md-input-container>
<md-button type="button" class="sg-icon-button"