Skip to content
New issue

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

chore(core, react, angular, vue, svelte): update demo data #656

Merged
merged 5 commits into from
Jun 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/angular/stories/all.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { withKnobs, object } from "@storybook/addon-knobs";

import { ChartsModule } from "../src/charts.module";

import { demoGroups } from "@carbon/charts/demo/data";
import { storybookDemoGroups } from "@carbon/charts/demo/data";

const getTemplate = demo => `
<div class="container theme--white">
Expand Down Expand Up @@ -38,7 +38,7 @@ const getTemplate = demo => `
`;

// Loop through all demo groups
demoGroups.forEach(demoGroup => {
storybookDemoGroups.forEach(demoGroup => {
// Create story group for each demo group
const groupStories = storiesOf(demoGroup.title, module).addDecorator(
withKnobs({ escapeHTML: false })
Expand Down
Loading