Merge remote-tracking branch 'origin/master' into angular-12

This commit is contained in:
Konstantina Galouni 2022-09-27 11:21:13 +03:00
commit 37a68b44ad
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ export class SubscribersComponent implements OnInit, OnDestroy, OnChanges {
this.page = 1;
}
this.userManagementService.updateUserInfo();
UIkit.notification(this.selectedUser + ' <b>is no longer</b> subscribed to ' + this.name + ' Dashboard', {
UIkit.notification(this.selectedUser + ' <b>is no longer</b> a member of ' + this.name + ' Dashboard', {
status: 'success',
timeout: 6000,
pos: 'bottom-right'

View File

@ -110,7 +110,7 @@ export class SubscriberInviteComponent implements OnInit, OnDestroy {
this.email.recipients = this.inviteForm.get('recipients').value;
this.subscriptions.push(this.emailService.sendEmail(properties, this.email).subscribe(res => {
if(res['success']) {
NotificationHandler.rise('Invitation to subscribe has been <b>sent</b>');
NotificationHandler.rise('Invitation to join has been <b>sent</b>');
} else {
NotificationHandler.rise('An error has occurred. Please try again later', 'danger');
}