Skip to content

Commit

Permalink
DevDocs: Gutenberg Components
Browse files Browse the repository at this point in the history
Amending class name
  • Loading branch information
mmtr committed Aug 23, 2018
1 parent ad7b95a commit 0d2b951
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/devdocs/gutenberg-components/example.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ class Example extends React.Component {
addFilter,
};
const className = classnames(
'devdocs__gutenberg-components__example',
`devdocs__gutenberg-components__example--${ kebabCase( this.props.component ) }`
'devdocs__gutenberg-components-example',
`devdocs__gutenberg-components-example--${ kebabCase( this.props.component ) }`
);

return code ? (
Expand Down
2 changes: 1 addition & 1 deletion client/devdocs/gutenberg-components/style.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import '../../../node_modules/@wordpress/components/build-style/style';

// Styles the contenteditable div included in the Gutenberg Autocomplete component example as an input
.devdocs__gutenberg-components__example--autocomplete [contenteditable] {
.devdocs__gutenberg-components-example--autocomplete [contenteditable] {
@extend %form-field;
}

0 comments on commit 0d2b951

Please sign in to comment.