Skip to content

Commit

Permalink
Added table-hover class to widget tables
Browse files Browse the repository at this point in the history
  • Loading branch information
epwinchell committed Aug 6, 2015
1 parent 39aa93c commit 291600b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/miq_widget/report_content.rb
Expand Up @@ -29,7 +29,7 @@ def generate(user_or_group)
end
end

rows = "<table class='table table-striped table-bordered'><thead><tr>"
rows = "<table class='table table-striped table-bordered table-hover'><thead><tr>"
headers.each { |h| rows << "<th>#{h}</th>" }
rows << "</tr></thead><tbody>"
rows << (body.blank? ? "<tr><td colspan='5'>No records found</td></tr>" : body)
Expand Down

0 comments on commit 291600b

Please sign in to comment.