Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
refactor: TTL-725 change the confirmation message of customer module
  • Loading branch information
abigailscl committed Dec 28, 2022
commit 43e1ff481ce309aaaa5a8c198040cd4522d4c378
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export class CustomerListComponent implements OnInit, OnDestroy, AfterViewInit {
editCustomer(customerId: string) {
this.idToEdit = customerId;
if (this.hasChange) {
this.message = 'You have changes in a client, do you want to discard them?';
this.message = 'You have unsaved changes, do you want to discard them?';
this.showModal = true;
} else {
this.showCustomerForm = true;
Expand Down