Skip to content

Commit

Permalink
Merge pull request #66 from newrelic/ru/deprecation-updates
Browse files Browse the repository at this point in the history
fix: app deprecation update
  • Loading branch information
rudouglas authored Feb 19, 2022
2 parents cbd0d28 + 9ee4c93 commit c6a39db
Show file tree
Hide file tree
Showing 7 changed files with 4,032 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 10.x
node-version: 16

- name: Cache node_modules
id: cache-node-modules
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 10.x
node-version: 16

- name: Cache node_modules
id: cache-node-modules
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 10.x
node-version: 16

- name: Cache node_modules
id: cache-node-modules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 10.x
node-version: 16

- name: Cache node_modules
id: cache-node-modules
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 10.x
node-version: 16

- name: Download Cached Deps
id: cache-node-modules
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16
2 changes: 1 addition & 1 deletion nerdlets/root/chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default class Chart extends React.PureComponent {
<ChartType
fullWidth
className="primary-chart"
accountId={this.props.account.id}
accountIds={[this.props.account.id]}
query={query}
style={{ height: '300px' }}
/>
Expand Down
2 changes: 1 addition & 1 deletion nerdlets/root/facet-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default class FacetTable extends React.PureComponent {
<TableChart
className="primary-table"
fullWidth
accountId={account.id}
accountIds={[account.id]}
query={query}
onClickTable={onClickRow}
/>
Expand Down
2 changes: 1 addition & 1 deletion nerdlets/root/heatmap.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Heatmap = props => {
<HeatmapChart
className="primary-chart"
query={query}
accountId={account.id}
accountIds={[account.id]}
fullWidth
style={{ height: '300px' }}
/>
Expand Down
Loading

0 comments on commit c6a39db

Please sign in to comment.