Skip to content

Commit

Permalink
fix html rendering of the column description
Browse files Browse the repository at this point in the history
  • Loading branch information
kimakan authored Dec 27, 2023
1 parent d260816 commit ee47a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daiquiri/core/templates/core/partials/table_tooltip.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<script type="text/ng-template" id="tooltip.html">
<div ng-show="column.description">
<strong>{% trans 'Description' %}</strong> {$ column.description $}
<strong>{% trans 'Description' %}</strong> <span ng-bind-html="column.description"></span>
</div>
<div ng-show="column.unit">
<strong>{% trans 'Unit' %}</strong> {$ column.unit $}
Expand Down

0 comments on commit ee47a1a

Please sign in to comment.