Skip to content

Commit

Permalink
[LinearProgress] Fix wrong style rule usage (#12319)
Browse files Browse the repository at this point in the history
  • Loading branch information
agentmilindu authored and oliviertassinari committed Jul 28, 2018
1 parent 0efc81d commit 4bc3f0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/material-ui/src/LinearProgress/LinearProgress.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ function LinearProgress(props) {
[classes.barColorSecondary]: color === 'secondary' && variant !== 'buffer',
[classes.colorSecondary]: color === 'secondary' && variant === 'buffer',
[classes.bar2Indeterminate]: variant === 'indeterminate' || variant === 'query',
[classes.bar1Determinate]: variant === 'determinate',
[classes.bar2Determinate]: variant === 'determinate',
[classes.bar2Buffer]: variant === 'buffer',
});
const rootProps = {};
Expand Down

0 comments on commit 4bc3f0e

Please sign in to comment.