You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2020/06/26 14:23:53 UTC

[whimsy] branch master updated: _thead belongs before _tbody

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new ce094d6  _thead belongs before _tbody
ce094d6 is described below

commit ce094d6e8ad1e7ff4ec84ebab31492b08a58b1dd
Author: Sebb <se...@apache.org>
AuthorDate: Fri Jun 26 15:23:43 2020 +0100

    _thead belongs before _tbody
---
 lib/whimsy/sitewebsite.rb | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/lib/whimsy/sitewebsite.rb b/lib/whimsy/sitewebsite.rb
index fbe37e0..4a62c38 100644
--- a/lib/whimsy/sitewebsite.rb
+++ b/lib/whimsy/sitewebsite.rb
@@ -30,14 +30,14 @@ def display_project(project, links, analysis, checks, tlp = true)
     }
   ) do
     _table.table.table_striped do
-      _tbody do
-        _thead do
-          _tr do
-            _th! 'Check Type'
-            _th! 'Check Results'
-            _th! 'Check Description'
-          end
+      _thead do
+        _tr do
+          _th! 'Check Type'
+          _th! 'Check Results'
+          _th! 'Check Description'
         end
+      end
+      _tbody do
         checks.keys.each do |col|
           cls = SiteStandards.label(analysis, links, col, project)
           _tr do