mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-04-02 21:21:14 +02:00
mark popup complete functions as async
This commit is contained in:
parent
379a4d1e4d
commit
7bb94732dd
@ -511,14 +511,14 @@ export class Popup {
|
|||||||
|
|
||||||
return this.#promise;
|
return this.#promise;
|
||||||
}
|
}
|
||||||
completeAffirmative() {
|
async completeAffirmative() {
|
||||||
return this.complete(POPUP_RESULT.AFFIRMATIVE);
|
return await this.complete(POPUP_RESULT.AFFIRMATIVE);
|
||||||
}
|
}
|
||||||
completeNegative() {
|
async completeNegative() {
|
||||||
return this.complete(POPUP_RESULT.NEGATIVE);
|
return await this.complete(POPUP_RESULT.NEGATIVE);
|
||||||
}
|
}
|
||||||
completeCancelled() {
|
async completeCancelled() {
|
||||||
return this.complete(POPUP_RESULT.CANCELLED);
|
return await this.complete(POPUP_RESULT.CANCELLED);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user