Skip to content
Snippets Groups Projects
Commit 3262c3e9 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-6727 Fix snackbar message text

parent 3b89a7ab
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ describe('PostfachService', () => { ...@@ -91,7 +91,7 @@ describe('PostfachService', () => {
tick(); tick();
expect(snackbarService.showInfo).toHaveBeenCalledWith( expect(snackbarService.showInfo).toHaveBeenCalledWith(
'Die Signatur wird erfolgreich gespeichert.', 'Die Signatur wurde erfolgreich gespeichert.',
); );
})); }));
}); });
......
...@@ -28,7 +28,7 @@ export class PostfachService { ...@@ -28,7 +28,7 @@ export class PostfachService {
private showInfoAfterSave(stateResource: StateResource<PostfachResource>) { private showInfoAfterSave(stateResource: StateResource<PostfachResource>) {
if (!stateResource.loading) { if (!stateResource.loading) {
this.snackbarService.showInfo('Die Signatur wird erfolgreich gespeichert.'); this.snackbarService.showInfo('Die Signatur wurde erfolgreich gespeichert.');
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment