Commit e37685ec319966dbd6d6336ce0e6257dc7986951
1 parent
00aef830
Exists in
colab
and in
4 other branches
Fix missing table row in Metric Results view
Showing
1 changed file
with
6 additions
and
4 deletions
Show diff stats
app/views/modules/_metric_results.html.erb
| 1 | 1 | <table class="table table-hover metric_results"> |
| 2 | 2 | <thead> |
| 3 | - <th><%= t('activemodel.attributes.metric_result.metric') %></th> | |
| 4 | - <th><%= t('activemodel.attributes.metric_result.value') %></th> | |
| 5 | - <th><%= t('activemodel.attributes.metric_result.weight') %></th> | |
| 6 | - <th><%= t('activemodel.attributes.metric_result.threshold') %></th> | |
| 3 | + <tr> | |
| 4 | + <th><%= t('activemodel.attributes.metric_result.metric') %></th> | |
| 5 | + <th><%= t('activemodel.attributes.metric_result.value') %></th> | |
| 6 | + <th><%= t('activemodel.attributes.metric_result.weight') %></th> | |
| 7 | + <th><%= t('activemodel.attributes.metric_result.threshold') %></th> | |
| 8 | + </tr> | |
| 7 | 9 | </thead> |
| 8 | 10 | |
| 9 | 11 | <tbody> | ... | ... |