From c966797e2bf90c2157cb5ea715d6a72e8de9495e Mon Sep 17 00:00:00 2001 From: Rostislav Wolny Date: Tue, 5 Nov 2019 15:55:49 +0100 Subject: [PATCH] Rename addNotice action to addNonDismissibleNotice [MAILPOET-2450] --- assets/js/src/form_editor/store/actions.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/src/form_editor/store/actions.jsx b/assets/js/src/form_editor/store/actions.jsx index f2ec5cbcc0..489f325c47 100644 --- a/assets/js/src/form_editor/store/actions.jsx +++ b/assets/js/src/form_editor/store/actions.jsx @@ -28,7 +28,7 @@ const createAddNoticeAction = (content, status, isDismissible, id) => ({ id, }); -export function addNotice(content, status, id) { +export function addNonDismissibleNotice(content, status, id) { return createAddNoticeAction(content, status, false, id); }