0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-18 23:01:11 +02:00
Dieser Commit ist enthalten in:
merefield 2023-11-15 14:39:42 +00:00
Ursprung 8e2b117321
Commit f6ce0f53ad
2 geänderte Dateien mit 5 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -44,6 +44,6 @@ export default class WizardSubscriptionBadge extends Component {
setTimeout(() => {
this.updateIcon = null;
}, 5000);
})
});
}
}
}

Datei anzeigen

@ -24,7 +24,9 @@ export default class SubscriptionService extends Service {
}
async retrieveSubscriptionStatus() {
let result = await ajax("/admin/wizards/subscription").catch(popupAjaxError);
let result = await ajax("/admin/wizards/subscription").catch(
popupAjaxError
);
this.subscribed = result.subscribed;
this.subscriptionType = result.subscription_type;