Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
linting
Dieser Commit ist enthalten in:
Ursprung
8e2b117321
Commit
f6ce0f53ad
2 geänderte Dateien mit 5 neuen und 3 gelöschten Zeilen
|
@ -44,6 +44,6 @@ export default class WizardSubscriptionBadge extends Component {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.updateIcon = null;
|
this.updateIcon = null;
|
||||||
}, 5000);
|
}, 5000);
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -24,7 +24,9 @@ export default class SubscriptionService extends Service {
|
||||||
}
|
}
|
||||||
|
|
||||||
async retrieveSubscriptionStatus() {
|
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.subscribed = result.subscribed;
|
||||||
this.subscriptionType = result.subscription_type;
|
this.subscriptionType = result.subscription_type;
|
||||||
|
|
Laden …
In neuem Issue referenzieren