mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
b1f9e7f1ca
* Fix global activities jsonb field * Fix tests
18 lines
837 B
Text
18 lines
837 B
Text
<%= render partial: "global_activities/references/my_module.html.erb",
|
|
locals: { team: team, subject: subject&.my_module, breadcrumbs: breadcrumbs, values: values, type_of: type_of } %>
|
|
<div class="ga-breadcrumb">
|
|
|
|
<span class="<%=result_icon_class(subject)%>"></span>
|
|
<% if subject&.navigable? %>
|
|
<% path = subject.archived? ? archive_my_module_path(subject.my_module) : results_my_module_path(subject.my_module) %>
|
|
<%= route_to_other_team(path,
|
|
team,
|
|
subject.name&.truncate(Constants::NAME_TRUNCATION_LENGTH),
|
|
title: subject.name) %>
|
|
<% else %>
|
|
<% name = subject&.name || breadcrumbs['result'] %>
|
|
<span title="<%= name %>">
|
|
<%= name&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
|
</span>
|
|
<% end %>
|
|
</div>
|