Improve copy around un-configured handlers

pull/10616/head
deniz kusefoglu 2018-01-02 11:19:08 -08:00
parent 11bb4cb2ec
commit b1f16adc7b
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ const HandlerEmpty = ({onGoToConfig, validationError}) =>
<div className="endpoint-tab-contents">
<div className="endpoint-tab--parameters">
<div className="endpoint-tab--parameters--empty">
<p>This handler does not seem to be configured.</p>
<p>This handler has not been configured</p>
<div className="form-group-submit col-xs-12 text-center">
<button
className="btn btn-primary"
@ -12,8 +12,8 @@ const HandlerEmpty = ({onGoToConfig, validationError}) =>
onClick={onGoToConfig}
>
{validationError
? 'Exit Rule and Configure Alert Handlers'
: 'Save Rule and Configure Alert Handlers'}
? 'Exit Rule and Configure this Alert Handler'
: 'Save Rule and Configure this Alert Handler'}
</button>
</div>
</div>