I have a .html.erb file which is used to display a form on a website. (Redmine)
I need to make a specific row bold. When the tracker == Anomaly, the row must be bold.

<% if query.columns == Anomaly>
make the text bold
but I think I have the wrong logic. How can I implement my idea?
I know what the ruby rows are processed in the following code. But I have no idea how to make a row bold based on a query.
the current code
<style>
.bolding {font-weight: bold;}
</style>
<tr id="issue-<%= issue.id %>" class="bolding hascontextmenu
<%= cycle('odd', 'even') %>
<%= issue.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
<td class="checkbox hide-when-print"><%= check_box_tag("ids[]", issue.id, false, :id => nil) %></td>
<td class="id"><%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %></td>
<% query.columns.each do |column| %><%= content_tag 'td', column_content(column, issue), :class => column.css_classes %><% end %>
</tr>
This was the right way to do it