Griddle version
v.1.11.2
Expected Behavior
Columns will display in the order listed in the data (like it does for <=8 columns)
Actual Behavior
Columns appear in an unexpected order (7, 8, 9, 1, 2, 3, 4, 5, 6)
Steps to reproduce
Follow the Getting Started example, but with data with >8 columns:
<Griddle
data={[
{ col1: '1', col2: '2', col3: '3', col4: '4', col5: '5',
col6: '6', col7: '7', col8: '8', col9: '9'}
]}
plugins={[plugins.LocalPlugin]}
/>