Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-21 17:00:29 +01:00
make init process async
Dieser Commit ist enthalten in:
Ursprung
f6ce0f53ad
Commit
a82af2e016
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
|
@ -18,9 +18,9 @@ export default class SubscriptionService extends Service {
|
|||
@tracked subscriptionAttributes = {};
|
||||
subscriptionLandingUrl = PRODUCT_PAGE;
|
||||
|
||||
init() {
|
||||
async init() {
|
||||
super.init(...arguments);
|
||||
this.retrieveSubscriptionStatus();
|
||||
await this.retrieveSubscriptionStatus();
|
||||
}
|
||||
|
||||
async retrieveSubscriptionStatus() {
|
||||
|
|
Laden …
In neuem Issue referenzieren