Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(progress-indicator): don't overwrite explicit "complete" on step (#…
…7345)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
janhassel and kodiakhq[bot] committed Dec 1, 2020
1 parent d804515 commit 14cc371
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -285,7 +285,7 @@ export class ProgressIndicator extends Component {
}
if (index > this.state.currentIndex) {
return React.cloneElement(child, {
complete: false,
complete: child.props.complete || false,
index,
onClick,
});
Expand Down

0 comments on commit 14cc371

Please sign in to comment.