We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 623e6d5 commit 2abcef9Copy full SHA for 2abcef9
src/reports/domain/MetabaseSetupStatus.js
@@ -74,15 +74,15 @@ class MetabaseSetupStatus {
74
}
75
76
canStartSetup() {
77
- return (this.status === this.NotSetup || this.setupStatus.status !== "COMPLETED") && !this.isAnyJobInProgress();
+ return (this.status === MetabaseSetupStatus.NotSetup || this.setupStatus.status !== "COMPLETED") && !this.isAnyJobInProgress();
78
79
80
isSetupInProgress() {
81
return this.setupStatus.isRunning(this.timeoutInMillis);
82
83
84
isSetupComplete() {
85
- return this.status === this.Setup && this.setupStatus.status === "COMPLETED";
+ return this.status === MetabaseSetupStatus.Setup && this.setupStatus.status === "COMPLETED";
86
87
88
isAnyJobInProgress() {
0 commit comments