taxtank-core 0.28.89 → 0.28.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -17730,10 +17730,11 @@
|
|
|
17730
17730
|
.subscribe(function (subscription) {
|
|
17731
17731
|
_this._serviceSubscription = subscription;
|
|
17732
17732
|
_this.serviceSubscriptionSubject.next(_this._serviceSubscription);
|
|
17733
|
-
|
|
17733
|
+
setTimeout(function () {
|
|
17734
|
+
_this.eventDispatcherService.dispatch(new AppEvent(exports.AppEventTypeEnum.SERVICE_SUBSCRIPTION_UPDATED, null));
|
|
17735
|
+
_this.toastService.success('Subscription successfully updated');
|
|
17736
|
+
}, 3000);
|
|
17734
17737
|
console.log(subscription);
|
|
17735
|
-
// @TODO move?
|
|
17736
|
-
_this.toastService.success('Subscription successfully updated');
|
|
17737
17738
|
});
|
|
17738
17739
|
};
|
|
17739
17740
|
return SubscriptionService;
|