From 06e84736451aca30555df2f80387dcf54b5fe7c5 Mon Sep 17 00:00:00 2001 From: deniz kusefoglu Date: Thu, 11 Jan 2018 15:50:10 -0800 Subject: [PATCH] Improve copy on flash messages --- ui/src/kapacitor/components/AlertTabs.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/kapacitor/components/AlertTabs.js b/ui/src/kapacitor/components/AlertTabs.js index de7b770b2..cd44216b5 100644 --- a/ui/src/kapacitor/components/AlertTabs.js +++ b/ui/src/kapacitor/components/AlertTabs.js @@ -80,13 +80,13 @@ class AlertTabs extends Component { this.refreshKapacitorConfig(this.props.kapacitor) this.props.addFlashMessage({ type: 'success', - text: `Alert for ${section} successfully saved`, + text: `Alert configuration for ${section} successfully saved.`, }) }) .catch(() => { this.props.addFlashMessage({ type: 'error', - text: 'There was an error saving the kapacitor config', + text: `There was an error saving the alert configuration for ${section}.`, }) }) }