Merge "When an error is encountered during submit trigger app error state"
This commit is contained in:
@@ -756,6 +756,11 @@
|
|||||||
return this.send(this._includeComments, this.canBeStarted)
|
return this.send(this._includeComments, this.canBeStarted)
|
||||||
.then(keepReviewers => {
|
.then(keepReviewers => {
|
||||||
this._purgeReviewersPendingRemove(false, keepReviewers);
|
this._purgeReviewersPendingRemove(false, keepReviewers);
|
||||||
|
}).catch(err => {
|
||||||
|
this.dispatchEvent(new CustomEvent('show-error', {
|
||||||
|
bubbles: true,
|
||||||
|
detail: {message: `Error submitting review ${err}`},
|
||||||
|
}));
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user