Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit ea15a2a

Browse files
태재영Matt Goo
태재영
authored and
Matt Goo
committed
fix(chips): Fix incorrect ripple effect (#804)
1 parent 7b413df commit ea15a2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/chips/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"url": "https://github.com/material-components/material-components-web-react.git"
2020
},
2121
"dependencies": {
22-
"@material/chips": "^1.0.0",
22+
"@material/chips": "^1.1.1",
2323
"@material/react-ripple": "^0.11.0",
2424
"classnames": "^2.2.6",
2525
"react": "^16.4.2"

test/unit/list/index.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ test('#listItem.props.onDestroy removes class name from state.listItemClassNames
363363
</ListItem></List>);
364364
wrapper.setState({listItemClassNames: {0: ['test']}});
365365
wrapper.childAt(0).childAt(0).props().onDestroy();
366-
console.log(wrapper.state().listItemClassNames[0]);
366+
assert.equal(0, Object.keys(wrapper.state().listItemClassNames).length);
367367
});
368368

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

0 commit comments

Comments
 (0)