From de86d8ba3db31a9178a5aa59cb079d3d427b2726 Mon Sep 17 00:00:00 2001 From: Kyle Doherty <kdoh@users.noreply.github.com> Date: Tue, 12 Jul 2016 15:36:49 -0700 Subject: [PATCH] update pulse test text (#2928) Change from test to send to indicate that functionality can be used to send one off pulses --- .../src/metabase/pulse/components/PulseEditChannels.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/metabase/pulse/components/PulseEditChannels.jsx b/frontend/src/metabase/pulse/components/PulseEditChannels.jsx index 95b57e8a4c3..b31b5a6c09a 100644 --- a/frontend/src/metabase/pulse/components/PulseEditChannels.jsx +++ b/frontend/src/metabase/pulse/components/PulseEditChannels.jsx @@ -179,11 +179,11 @@ export default class PulseEditChannels extends Component { actionFn={this.onTestPulseChannel.bind(this, channel)} className={cx("Button", { disabled: !isValid })} normalText={channelSpec.type === "email" ? - "Send a test email now" : - "Test " + channelSpec.name + " now"} + "Send email now" : + "Send to " + channelSpec.name + " now"} activeText="Sending…" - failedText="Test failed" - successText="Test sent" + failedText="Sending failed" + successText="Pulse sent" /> </div> </li> -- GitLab