mark popup complete functions as async

7bb94732ddc8d46bbb2322a65a3821d22f72e3b1

Wolfsblvt <wolfsblvt@gmail.com>

1 files changed, +6 -6Ignore whitespace
public/scripts/popup.js+6 -6
@@ -511,14 +511,14 @@ export class Popup {
511511
512512 return this.#promise;
513513 }
514514 async completeAffirmative() {
515515 return await this.complete(POPUP_RESULT.AFFIRMATIVE);
516516 }
517517 async completeNegative() {
518518 return await this.complete(POPUP_RESULT.NEGATIVE);
519519 }
520520 async completeCancelled() {
521521 return await this.complete(POPUP_RESULT.CANCELLED);
522522 }
523523
524524 /**