Skip to content

Commit

Permalink
CC-35092: Fixed issue with multiselect view. (#11265)
Browse files Browse the repository at this point in the history
Support multi-select attributes in backoffice view page.
  • Loading branch information
dmiseev authored Jan 3, 2025
1 parent 48a5429 commit acbf9a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
{% for name,value in attributes %}
<div class="row">
<div class="col-xs-4"><b>{{ name }}</b></div>
<div class="col-xs-8">{{ value }}</div>
<div class="col-xs-8">{{ value | join(', ') }}</div>
</div>
{% if not loop.last %}
<div class="hr-line-dashed"></div>
Expand Down

0 comments on commit acbf9a5

Please sign in to comment.