Skip to content

Commit

Permalink
fix: remove references to non-supported property minWidth (fixes #95)
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Jun 16, 2019
1 parent 0627005 commit ce2e916
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .README/usage/cell_content_alignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ config = {
columns: {
0: {
alignment: 'left',
minWidth: 10
width: 10
},
1: {
alignment: 'center',
minWidth: 10
width: 10
},
2: {
alignment: 'right',
minWidth: 10
width: 10
}
}
};
Expand Down
6 changes: 0 additions & 6 deletions test/configSamples.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,14 @@ export default {
columns: {
0: {
alignment: 'left',

// minWidth: 10,
width: 10
},
1: {
alignment: 'center',

// minWidth: 10,
width: 10
},
2: {
alignment: 'right',

// minWidth: 10,
width: 10
}
}
Expand Down
6 changes: 0 additions & 6 deletions test/streamConfigSamples.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,14 @@ export default {
columns: {
0: {
alignment: 'left',

// minWidth: 10,
width: 10
},
1: {
alignment: 'center',

// minWidth: 10,
width: 10
},
2: {
alignment: 'right',

// minWidth: 10,
width: 10
}
}
Expand Down

0 comments on commit ce2e916

Please sign in to comment.