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

Commit

Permalink
Enable border on sortableTable by default
Browse files Browse the repository at this point in the history
Fixes #10434
Follow-up to #10265

Auditors: @cezaraugusto

Test Plan:
1. Run `npm run add-simulated-synopsis-visits 100`
2. Open about:preferences#payments
3. Pin some sites
4. Make sure the orange border appears on the table
  • Loading branch information
Suguru Hirahara committed Aug 11, 2017
1 parent 07c6cd9 commit a036a87
Showing 1 changed file with 4 additions and 1 deletion.
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

0 comments on commit a036a87

Please sign in to comment.