Skip to content

Commit

Permalink
Merge pull request #86 from storybookjs/fix-highlight-prop-error
Browse files Browse the repository at this point in the history
Fix Highlight PropType error for CSS langauge
  • Loading branch information
kylesuss authored Oct 7, 2019
2 parents 914971d + 1e87903 commit b131309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Highlight.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import loadLanguages from 'prismjs/components/index';
import PropTypes from 'prop-types';
import { color, typography } from './shared/styles';

const languages = ['bash', 'javascript', 'typescript', 'json'];
const languages = ['bash', 'javascript', 'typescript', 'json', 'css'];
loadLanguages(languages);

// Prism theme copied from 'prismjs/themes/prism.css.' -- without Webpack, the CSS
Expand Down

0 comments on commit b131309

Please sign in to comment.