Fix asset link partial in item card

This commit is contained in:
aignatov-bio 2020-12-03 12:58:54 +01:00
parent a27c78e445
commit e6e9c84a7c

View file

@ -31,7 +31,7 @@
<span>
<%= t 'repository_row.modal_info.column_name', cf: repository_cell.repository_column.name %>
<% if repository_cell.value_type == 'RepositoryAssetValue' %>
<%= render partial: 'shared/asset_link', locals: { asset: repository_cell.value.asset, display_image_tag: false }, formats: :html %>
<%= render partial: 'assets/asset_link', locals: { asset: repository_cell.value.asset, display_image_tag: false }, formats: :html %>
<% else %>
<%= custom_auto_link(repository_cell.value.formatted, simple_format: false, team: current_team) %>
<% end %>