Skip to content

Commit

Permalink
fix(calendar(js)): don't escape HTML characters in repeat select menu
Browse files Browse the repository at this point in the history
Fixes #4875
  • Loading branch information
cgx committed Nov 7, 2019
1 parent 113f076 commit 699849c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/Templates/SchedulerUI/UIxAppointmentEditorTemplate.wox
Expand Up @@ -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"
Expand Down

0 comments on commit 699849c

Please sign in to comment.