Skip to content

Commit

Permalink
Apply design feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecote committed Oct 15, 2020
1 parent c6d2631 commit 7fef799
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function getEncryptedFieldNotifyLabel(isCreate: boolean) {
return (
<Fragment>
<EuiSpacer size="s" />
<EuiText color="secondary" size="s" data-test-subj="rememberValuesMessage">
<EuiText size="s" data-test-subj="rememberValuesMessage">
<FormattedMessage
id="xpack.triggersActionsUI.components.builtinActionTypes.emailAction.rememberValuesLabel"
defaultMessage="Remember these values. You must reenter them each time you edit the connector."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ const JiraConnectorFields: React.FC<ActionConnectorFieldsProps<JiraActionConnect
function getEncryptedFieldNotifyLabel(isCreate: boolean) {
if (isCreate) {
return (
<EuiText color="secondary" size="s" data-test-subj="rememberValuesMessage">
<EuiText size="s" data-test-subj="rememberValuesMessage">
{i18n.JIRA_REMEMBER_VALUES_LABEL}
</EuiText>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function getEncryptedFieldNotifyLabel(isCreate: boolean) {
return (
<Fragment>
<EuiSpacer size="s" />
<EuiText color="secondary" size="s" data-test-subj="rememberValuesMessage">
<EuiText size="s" data-test-subj="rememberValuesMessage">
<FormattedMessage
id="xpack.triggersActionsUI.components.builtinActionTypes.pagerDutyAction.rememberValueLabel"
defaultMessage="Remember this value. You must reenter it each time you edit the connector."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ const ResilientConnectorFields: React.FC<ActionConnectorFieldsProps<ResilientAct
function getEncryptedFieldNotifyLabel(isCreate: boolean) {
if (isCreate) {
return (
<EuiText color="secondary" size="s" data-test-subj="rememberValuesMessage">
<EuiText size="s" data-test-subj="rememberValuesMessage">
{i18n.REMEMBER_VALUES_LABEL}
</EuiText>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const ServiceNowConnectorFields: React.FC<ActionConnectorFieldsProps<
function getEncryptedFieldNotifyLabel(isCreate: boolean) {
if (isCreate) {
return (
<EuiText color="secondary" size="s" data-test-subj="rememberValuesMessage">
<EuiText size="s" data-test-subj="rememberValuesMessage">
{i18n.REMEMBER_VALUES_LABEL}
</EuiText>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function getEncryptedFieldNotifyLabel(isCreate: boolean) {
return (
<Fragment>
<EuiSpacer size="s" />
<EuiText color="secondary" size="s" data-test-subj="rememberValuesMessage">
<EuiText size="s" data-test-subj="rememberValuesMessage">
<FormattedMessage
id="xpack.triggersActionsUI.components.builtinActionTypes.slackAction.rememberValueLabel"
defaultMessage="Remember this value. You must reenter it each time you edit the connector."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ const WebhookActionConnectorFields: React.FunctionComponent<ActionConnectorField
function getEncryptedFieldNotifyLabel(isCreate: boolean) {
if (isCreate) {
return (
<EuiText color="secondary" size="s" data-test-subj="rememberValuesMessage">
<EuiText size="s" data-test-subj="rememberValuesMessage">
<FormattedMessage
id="xpack.triggersActionsUI.components.builtinActionTypes.webhookAction.rememberValuesLabel"
defaultMessage="Remember these values. You must reenter them each time you edit the connector."
Expand Down

0 comments on commit 7fef799

Please sign in to comment.