Skip to content

Commit 869b9f7

Browse files
committed
Merge empty cells in list headers
1 parent c7af287 commit 869b9f7

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

templates/react/components/foo/List.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ class List extends Component {
4545
{{#each fields}}
4646
<th>{{name}}</th>
4747
{{/each}}
48-
<th></th>
49-
<th></th>
48+
<th colSpan={2}></th>
5049
</tr>
5150
</thead>
5251
<tbody>

templates/vue/components/foo/List.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@
4343
{{#each fields}}
4444
<th>{{name}}</th>
4545
{{/each }}
46-
<th></th>
47-
<th></th>
46+
<th colspan="2"></th>
4847
</tr>
4948
</thead>
5049
<tbody>

0 commit comments

Comments
 (0)