Commit c76764b7dc2b0b7ac04215b0bc9b644db1b30796
1 parent
9f940aea
Exists in
master
and in
4 other branches
add missing mandatory tr in thead
Showing
5 changed files
with
42 additions
and
36 deletions
Show diff stats
app/views/admin/groups/index.html.haml
... | ... | @@ -12,13 +12,14 @@ |
12 | 12 | |
13 | 13 | %table |
14 | 14 | %thead |
15 | - %th | |
16 | - Name | |
17 | - %i.icon-sort-down | |
18 | - %th Path | |
19 | - %th Projects | |
20 | - %th Owner | |
21 | - %th.cred Danger Zone! | |
15 | + %tr | |
16 | + %th | |
17 | + Name | |
18 | + %i.icon-sort-down | |
19 | + %th Path | |
20 | + %th Projects | |
21 | + %th Owner | |
22 | + %th.cred Danger Zone! | |
22 | 23 | |
23 | 24 | - @groups.each do |group| |
24 | 25 | %tr | ... | ... |
app/views/admin/projects/index.html.haml
... | ... | @@ -9,14 +9,15 @@ |
9 | 9 | |
10 | 10 | %table |
11 | 11 | %thead |
12 | - %th | |
13 | - Name | |
14 | - %i.icon-sort-down | |
15 | - %th Path | |
16 | - %th Team Members | |
17 | - %th Last Commit | |
18 | - %th Edit | |
19 | - %th.cred Danger Zone! | |
12 | + %tr | |
13 | + %th | |
14 | + Name | |
15 | + %i.icon-sort-down | |
16 | + %th Path | |
17 | + %th Team Members | |
18 | + %th Last Commit | |
19 | + %th Edit | |
20 | + %th.cred Danger Zone! | |
20 | 21 | |
21 | 22 | - @projects.each do |project| |
22 | 23 | %tr | ... | ... |
app/views/admin/users/index.html.haml
... | ... | @@ -21,15 +21,16 @@ |
21 | 21 | |
22 | 22 | %table |
23 | 23 | %thead |
24 | - %th Admin | |
25 | - %th | |
26 | - Name | |
27 | - %i.icon-sort-down | |
28 | - %th Username | |
29 | - %th Email | |
30 | - %th Projects | |
31 | - %th Edit | |
32 | - %th.cred Danger Zone! | |
24 | + %tr | |
25 | + %th Admin | |
26 | + %th | |
27 | + Name | |
28 | + %i.icon-sort-down | |
29 | + %th Username | |
30 | + %th Email | |
31 | + %th Projects | |
32 | + %th Edit | |
33 | + %th.cred Danger Zone! | |
33 | 34 | |
34 | 35 | - @admin_users.each do |user| |
35 | 36 | %tr | ... | ... |
app/views/milestones/show.html.haml
... | ... | @@ -47,10 +47,11 @@ |
47 | 47 | .span6 |
48 | 48 | %table.milestone-issue-filter |
49 | 49 | %thead |
50 | - %th | |
51 | - %ul.nav.nav-pills | |
52 | - %li.active= link_to('Open Issues', '#') | |
53 | - %li=link_to('All Issues', '#') | |
50 | + %tr | |
51 | + %th | |
52 | + %ul.nav.nav-pills | |
53 | + %li.active= link_to('Open Issues', '#') | |
54 | + %li=link_to('All Issues', '#') | |
54 | 55 | - @issues.each do |issue| |
55 | 56 | %tr{data: {closed: issue.closed}} |
56 | 57 | %td |
... | ... | @@ -62,10 +63,11 @@ |
62 | 63 | .span6 |
63 | 64 | %table.milestone-merge-requests-filter |
64 | 65 | %thead |
65 | - %th | |
66 | - %ul.nav.nav-pills | |
67 | - %li.active= link_to('Open Merge Requests', '#') | |
68 | - %li=link_to('All Merge Requests', '#') | |
66 | + %tr | |
67 | + %th | |
68 | + %ul.nav.nav-pills | |
69 | + %li.active= link_to('Open Merge Requests', '#') | |
70 | + %li=link_to('All Merge Requests', '#') | |
69 | 71 | - @merge_requests.each do |merge_request| |
70 | 72 | %tr{data: {closed: merge_request.closed}} |
71 | 73 | %td | ... | ... |
app/views/tree/_tree.html.haml
... | ... | @@ -16,10 +16,11 @@ |
16 | 16 | - else |
17 | 17 | %table#tree-slider{class: "table_#{@hex_path} tree-table" } |
18 | 18 | %thead |
19 | - %th Name | |
20 | - %th Last Update | |
21 | - %th Last Commit | |
22 | - %th= link_to "history", project_commits_path(@project, @id), class: "btn very_small right" | |
19 | + %tr | |
20 | + %th Name | |
21 | + %th Last Update | |
22 | + %th Last Commit | |
23 | + %th= link_to "history", project_commits_path(@project, @id), class: "btn very_small right" | |
23 | 24 | |
24 | 25 | - if tree.up_dir? |
25 | 26 | %tr.tree-item | ... | ... |