newrelic / nr1-workshop

Self-paced training workshop for the NR1 CLI/SDK
Apache License 2.0
85 stars 68 forks source link

Lab1: Step 4: Incorrect class name used #82

Closed endtoend closed 4 years ago

endtoend commented 4 years ago

Previously in line 171 className="top-chart" is used.

Later on line 257 the following is added

                    <StackItem>
                            <TableChart query={nrql} accountId={this.accountId} className="chart" onClickTable={(dataEl, row, chart) => {
                                //for learning purposes, we'll write to the console.
                                console.debug([dataEl, row, chart]) //eslint-disable-line
                                this.setApplication(row.appId, row.appName)
                            }}/>

The screenshot shown shows the chart full width but the instructions erroneously call for className="chart" which is half width.