Skip to content

Commit

Permalink
[docs] Fix ChipPlayground generated code (#12401)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrookes authored Aug 3, 2018
1 parent 1d6ba9a commit 809f075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/pages/demos/chips/ChipsPlayground.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class ChipsPlayground extends React.Component {
const { classes } = this.props;
const { color, onDelete, avatar } = this.state;

const colorToCode = color !== 'default' ? `color=${color} ` : '';
const colorToCode = color !== 'default' ? `color="${color}" ` : '';

let onDeleteToCode;
switch (onDelete) {
Expand Down

0 comments on commit 809f075

Please sign in to comment.