modify completion connection indicator

pull/4145/head
Daniel Campbell 2018-08-08 17:55:06 -07:00
parent 8107804b1f
commit 11454b59bb
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class WizardProgressBar extends PureComponent<Props> {
if (i > 0 && steps[i - 1].stepStatus === StepStatus.Complete) {
connectorStatus = ConnectorState.Some
if (stepStatus === StepStatus.Complete) {
if (i === steps.length - 1 || stepStatus === StepStatus.Complete) {
connectorStatus = ConnectorState.Full
}
}