Skip to content

Commit

Permalink
fix(calendar): accept HTML in repeat frequencies descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
cgx committed Nov 30, 2020
1 parent e2e5e6f commit c38524a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/Templates/SchedulerUI/UIxTaskEditorTemplate.wox
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
<md-input-container class="md-block md-flex">
<label><var:string label:value="Repeat"/></label>
<md-select ng-model="editor.component.repeat.frequency" 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 c38524a

Please sign in to comment.