From 3262c3e93e115a58848fb71dae73d4ec4c3bb20b Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Mon, 16 Sep 2024 08:51:47 +0200 Subject: [PATCH] OZG-6727 Fix snackbar message text --- .../admin/settings/src/lib/postfach/postfach.service.spec.ts | 2 +- .../libs/admin/settings/src/lib/postfach/postfach.service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/alfa-client/libs/admin/settings/src/lib/postfach/postfach.service.spec.ts b/alfa-client/libs/admin/settings/src/lib/postfach/postfach.service.spec.ts index 0d8fd6b5eb..d787449be4 100644 --- a/alfa-client/libs/admin/settings/src/lib/postfach/postfach.service.spec.ts +++ b/alfa-client/libs/admin/settings/src/lib/postfach/postfach.service.spec.ts @@ -91,7 +91,7 @@ describe('PostfachService', () => { tick(); expect(snackbarService.showInfo).toHaveBeenCalledWith( - 'Die Signatur wird erfolgreich gespeichert.', + 'Die Signatur wurde erfolgreich gespeichert.', ); })); }); diff --git a/alfa-client/libs/admin/settings/src/lib/postfach/postfach.service.ts b/alfa-client/libs/admin/settings/src/lib/postfach/postfach.service.ts index 2fc6ec706f..1ff8670730 100644 --- a/alfa-client/libs/admin/settings/src/lib/postfach/postfach.service.ts +++ b/alfa-client/libs/admin/settings/src/lib/postfach/postfach.service.ts @@ -28,7 +28,7 @@ export class PostfachService { private showInfoAfterSave(stateResource: StateResource<PostfachResource>) { if (!stateResource.loading) { - this.snackbarService.showInfo('Die Signatur wird erfolgreich gespeichert.'); + this.snackbarService.showInfo('Die Signatur wurde erfolgreich gespeichert.'); } } -- GitLab