Skip to content

Commit

Permalink
Jetpack Checklist: Fix backups completion state when provisioning (#3…
Browse files Browse the repository at this point in the history
  • Loading branch information
tyxla authored Apr 16, 2019
1 parent d90bc1b commit 15a2750
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class JetpackChecklist extends PureComponent {
translate,
vaultpressFinished,
} = this.props;
const isRewindActive = rewindState === 'active';
const isRewindActive = rewindState === 'active' || rewindState === 'provisioning';
const isRewindAvailable = rewindState !== 'uninitialized' && rewindState !== 'unavailable';
const isRewindUnAvailable = rewindState === 'unavailable';

Expand Down

0 comments on commit 15a2750

Please sign in to comment.