Ignore:
Timestamp:
10/16/21 20:00:57 (3 years ago)
Author:
Стојков Марко <mst@…>
Branches:
dev
Children:
3b395c5, 95d80e4
Parents:
f9983f5 (diff), dab7a9b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merged branch preview-question into dev

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Clients/Angular/finki-chattery/src/app/core/services/notification.service.ts

    rf9983f5 r9885bee  
    2222
    2323  public successNotification(title: string, description?: string): void {
    24     this.toastr.success(this.translate.instant(description), this.translate.instant(title));
     24    if (description) {
     25      this.toastr.success(this.translate.instant(description), this.translate.instant(title));
     26    }
     27    this.toastr.success(this.translate.instant(title));
    2528  }
    2629}
Note: See TracChangeset for help on using the changeset viewer.