We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37c815 commit faff696Copy full SHA for faff696
src/app/modules/time-clock/store/entry.effects.ts
@@ -45,6 +45,9 @@ export class EntryEffects {
45
mergeMap(() =>
46
this.entryService.summary().pipe(
47
map((response) => {
48
+ if (!response){
49
+ this.toastrService.warning('Your summary information could not be loaded');
50
+ }
51
return new actions.LoadEntriesSummarySuccess(response);
52
}),
53
catchError((error) => {
0 commit comments