Skip to content

Commit

Permalink
Fix component name typos (#488)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesfries authored Oct 7, 2024
1 parent 67572b7 commit d628cf5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test-app/app/components/chart-heat-map.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Component from '@glimmer/component';

export default class Funnel extends Component {
export default class HeatMap extends Component {
chartOptions = {
chart: {
type: 'heatmap',
Expand Down
2 changes: 1 addition & 1 deletion test-app/app/components/chart-highstock-interactive.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { tracked } from '@glimmer/tracking';

import stockData from '../data/stock';

export default class BarBasic extends Component {
export default class HighstockInteractive extends Component {
@service('dynamic-chart')
dynamicChart;

Expand Down
2 changes: 1 addition & 1 deletion test-app/app/components/chart-line-interactive.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { tracked } from '@glimmer/tracking';

import commitStats from '../data/commit-stats';

export default class BarBasic extends Component {
export default class LineInteractive extends Component {
@service('dynamic-chart')
dynamicChart;

Expand Down
2 changes: 1 addition & 1 deletion test-app/app/components/chart-solid-gauge.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Component from '@glimmer/component';

export default class Scatter extends Component {
export default class SolidGauge extends Component {
chartOptions = {
chart: {
type: 'solidgauge',
Expand Down

0 comments on commit d628cf5

Please sign in to comment.