diff options
author | Luca Ceresoli <luca@lucaceresoli.net> | 2012-01-11 15:34:39 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-01-11 19:40:32 +0100 |
commit | 0e6695fc365df202ec8e27c7deb322a34ae3abf9 (patch) | |
tree | f8d08d5f244b9fcf4dcc20f6f2254ed99dee8fb7 | |
parent | 234dd8e6a2ce006283a5419f457973c3336558ca (diff) |
pkg-stats: fix table layout
The "Patch count" cell needs rowspan=2, otherwise the host/target cells are
misaligned.
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rwxr-xr-x | support/scripts/pkg-stats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats index 64aae5fae..822827455 100755 --- a/support/scripts/pkg-stats +++ b/support/scripts/pkg-stats @@ -51,7 +51,7 @@ tr.correct td { <tr> <td rowspan=\"2\">Id</td> <td rowspan=\"2\">Package</td> -<td>Patch count</td> +<td rowspan=\"2\">Patch count</td> <td colspan=\"2\" class=\"centered\">AUTOTARGETS</td> <td colspan=\"2\" class=\"centered\">GENTARGETS</td> <td colspan=\"2\" class=\"centered\">CMAKETARGETS</td> |