Skip to content

Commit

Permalink
Fixed #1900 - Animation "none" not working for Skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Mar 25, 2021
1 parent c6b1c58 commit 6fc68b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/skeleton/Skeleton.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class Skeleton extends Component {
render() {
const skeletonClassName = classNames('p-skeleton p-component', {
'p-skeleton-circle': this.props.shape === 'circle',
'p-skeleton-animation-none': this.props.animation === 'none'
'p-skeleton-none': this.props.animation === 'none'
}, this.props.className);

const style = this.skeletonStyle();
Expand Down

0 comments on commit 6fc68b8

Please sign in to comment.