From 0b6b7989acf8aaf5717d6856ca80bc374710c18d Mon Sep 17 00:00:00 2001 From: elforjani3 Date: Sun, 12 Sep 2021 15:44:49 +0200 Subject: [PATCH] BIG-48: fix message alert estimate . --- .../containers/Sales/Estimates/EstimateForm/EstimateForm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/containers/Sales/Estimates/EstimateForm/EstimateForm.js b/client/src/containers/Sales/Estimates/EstimateForm/EstimateForm.js index 0c00f4706..4bb8f542b 100644 --- a/client/src/containers/Sales/Estimates/EstimateForm/EstimateForm.js +++ b/client/src/containers/Sales/Estimates/EstimateForm/EstimateForm.js @@ -113,8 +113,8 @@ function EstimateForm({ AppToaster.show({ message: intl.get( isNewMode - ? 'the_estimate_has_been_edited_successfully' - : 'the_estimate_has_been_created_successfully', + ? 'the_estimate_has_been_created_successfully' + : 'the_estimate_has_been_edited_successfully', { number: values.estimate_number }, ), intent: Intent.SUCCESS,