@questwork/q-store-model 0.1.34 → 0.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.min.cjs +2 -2
- package/dist/index.min.js +2 -2
- package/dist/q-store-model.min.js +6961 -0
- package/package.json +3 -2
package/dist/index.min.cjs
CHANGED
|
@@ -2404,8 +2404,8 @@ class Status {
|
|
|
2404
2404
|
return this.assigned !== null
|
|
2405
2405
|
}
|
|
2406
2406
|
get isCancelled() {
|
|
2407
|
-
return this.lastStatus === 'cancelled'
|
|
2408
|
-
|
|
2407
|
+
// return this.lastStatus === 'cancelled'
|
|
2408
|
+
return this.cancelled !== null
|
|
2409
2409
|
}
|
|
2410
2410
|
get isCompleted() {
|
|
2411
2411
|
return this.completed !== null
|
package/dist/index.min.js
CHANGED
|
@@ -2400,8 +2400,8 @@ class Status {
|
|
|
2400
2400
|
return this.assigned !== null
|
|
2401
2401
|
}
|
|
2402
2402
|
get isCancelled() {
|
|
2403
|
-
return this.lastStatus === 'cancelled'
|
|
2404
|
-
|
|
2403
|
+
// return this.lastStatus === 'cancelled'
|
|
2404
|
+
return this.cancelled !== null
|
|
2405
2405
|
}
|
|
2406
2406
|
get isCompleted() {
|
|
2407
2407
|
return this.completed !== null
|