Skip to content

Commit

Permalink
fix(chips): Fix incorrect ripple effect (#804)
Browse files Browse the repository at this point in the history
  • Loading branch information
태재영 authored and Matt Goo committed Apr 30, 2019
1 parent 7b413df commit ea15a2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/chips/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"url": "https://github.com/material-components/material-components-web-react.git"
},
"dependencies": {
"@material/chips": "^1.0.0",
"@material/chips": "^1.1.1",
"@material/react-ripple": "^0.11.0",
"classnames": "^2.2.6",
"react": "^16.4.2"
Expand Down
2 changes: 1 addition & 1 deletion test/unit/list/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ test('#listItem.props.onDestroy removes class name from state.listItemClassNames
</ListItem></List>);
wrapper.setState({listItemClassNames: {0: ['test']}});
wrapper.childAt(0).childAt(0).props().onDestroy();
console.log(wrapper.state().listItemClassNames[0]);
assert.equal(0, Object.keys(wrapper.state().listItemClassNames).length);
});

test('#handleKeyDown calls #foudation.handleKeydown', () => {
Expand Down

0 comments on commit ea15a2a

Please sign in to comment.