Skip to content

Commit

Permalink
Hotfix: fix unplugged progress dots rendering issue
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlory committed Jun 7, 2016
1 parent fc95f09 commit 3fda3ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code-studio/src/js/components/progress/progress_dot.jsx
Expand Up @@ -117,7 +117,7 @@ const ProgressDot = React.createClass({
}

const isUnplugged = isNaN(level.title);
if (isUnplugged && uid === this.props.currentLevelId) {
if (isUnplugged && (this.props.largeDots || uid === this.props.currentLevelId)) {
Object.assign(dotStyle, styles.dot.unplugged);
}

Expand Down

0 comments on commit 3fda3ff

Please sign in to comment.