Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Enable border on sortableTable by default #10435

Merged
merged 1 commit into from
Aug 15, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion app/renderer/components/common/sortableTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,10 @@ const styles = StyleSheet.create({
table: {
boxSizing: 'border-box',
cursor: 'default',
borderSpacing: 0
borderSpacing: 0,

// #10434: Enable border on the table by default
borderCollapse: 'collapse'
},

// Setting 'fillAvailable' maximizes the width of the table.
Expand Down