Commit 158c6802 authored by 杨奕's avatar 杨奕 Committed by GitHub

Merge pull request #82 from QingWei-Li/master

Table: fix gutter width,  #80, #78
parents e69771f5 ae337719
......@@ -41,14 +41,8 @@ export default {
]
}
</th>
).concat(<th
class="gutter"
style={{
width: (this.$parent.showVScrollBar
? this.$parent.currentGutterWidth
: 0
) + 'px'
}}>&nbsp;</th>)
).concat(this.$parent.showVScrollBar && this.$parent.currentGutterWidth ? <th class="gutter"
style={{ width: this.$parent.currentGutterWidth + 'px' }}></th> : '')
}
</tr>
</thead>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment