Quick fixes for self deployment.
This commit is contained in:
parent
a5d2e9a3b9
commit
ee37bca225
|
@ -19,6 +19,9 @@ class Deployment {
|
|||
}
|
||||
|
||||
setQuota(quota) {
|
||||
if (!quota) {
|
||||
return
|
||||
}
|
||||
this.quota = quota
|
||||
}
|
||||
|
||||
|
@ -31,6 +34,9 @@ class Deployment {
|
|||
}
|
||||
|
||||
setVerification(verification) {
|
||||
if (!verification) {
|
||||
return
|
||||
}
|
||||
if (this.verification.quota) {
|
||||
this.quota = this.verification.quota
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue