http-request-manager 18.16.28 → 18.16.29
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.
|
@@ -4259,10 +4259,8 @@ class HTTPManagerService extends RequestService {
|
|
|
4259
4259
|
handleSuccessWithSnackBar(message) {
|
|
4260
4260
|
const displaySuccess = ToastDisplay.adapt({
|
|
4261
4261
|
message: message || 'Success',
|
|
4262
|
-
action: 'OK',
|
|
4263
4262
|
color: ToastColors.SUCCESS,
|
|
4264
4263
|
icon: 'check_circle',
|
|
4265
|
-
duration: 3 * 1000, //3 seconds
|
|
4266
4264
|
});
|
|
4267
4265
|
this.toastMessage.toastMessage(displaySuccess);
|
|
4268
4266
|
}
|
|
@@ -5059,10 +5057,8 @@ class HTTPManagerSignalsService extends RequestSignalsService {
|
|
|
5059
5057
|
handleSuccessWithSnackBar(message) {
|
|
5060
5058
|
const displaySuccess = ToastDisplay.adapt({
|
|
5061
5059
|
message: message || 'Success',
|
|
5062
|
-
action: 'OK',
|
|
5063
5060
|
color: ToastColors.SUCCESS,
|
|
5064
5061
|
icon: 'check_circle',
|
|
5065
|
-
duration: 3 * 1000,
|
|
5066
5062
|
});
|
|
5067
5063
|
this.toastMessage.toastMessage(displaySuccess);
|
|
5068
5064
|
}
|