We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.13.1
Work as flat array of <ColumnDefinition> is flat elements.
<ColumnDefinition>
TypeError: Cannot read property 'id' of undefined
const data = [ { name: "data1", name1: 111, name2: 222 }, { name: "data2", name1: 333, name2: 444 } ]; class App extends Component { render() { return ( <Griddle data={data} plugins={[plugins.LocalPlugin]}> <RowDefinition> <ColumnDefinition id={"name"} title={"name"} /> {["name1", "name2"].map(c => { return <ColumnDefinition key={c} id={c} title={c} />; })} </RowDefinition> </Griddle> ); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Griddle version
1.13.1
Expected Behavior
Work as flat array of
<ColumnDefinition>
is flat elements.Actual Behavior
Steps to reproduce
The text was updated successfully, but these errors were encountered: