Skip to content

Commit

Permalink
Enable border on sortableTable by default
Browse files Browse the repository at this point in the history
Fixes brave#10434
Follow-up to brave#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 authored and dfperry5 committed Aug 18, 2017
1 parent 50fd17c commit a97779c
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 a97779c

Please sign in to comment.