Skip to content

Commit

Permalink
Render markdown for BS5 values. (#1927)
Browse files Browse the repository at this point in the history
  • Loading branch information
melaniekung authored Feb 14, 2025
1 parent 229d214 commit 36393ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/helper/QubitHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ function render_b5_show_value($value, $options = [])
if (is_array($value) || $value instanceof sfOutputEscaperObjectDecorator || $value instanceof sfOutputEscaperArrayDecorator) {
$finalValue = '<ul class="'.render_b5_show_list_css_classes().'">';
foreach ($value as $item) {
$finalValue .= '<li>'.$item.'</li>';
$finalValue .= '<li>'.render_value($item).'</li>';
}
$finalValue .= '</ul>';
}
Expand Down

0 comments on commit 36393ea

Please sign in to comment.