Skip to content

Commit

Permalink
Copy updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sabarasaba committed May 12, 2022
1 parent 5b3dc19 commit 1413dd6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ describe('<PolicyList />', () => {
await actions.clickPolicyAt(2);

expect(find('includeGlobalState.value').text()).toEqual('Yes');
expect(find('policyFeatureStatesSummary.value').text()).toEqual('From all features');
expect(find('policyFeatureStatesSummary.value').text()).toEqual('All features');
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const IncludeFeatureStatesField: FunctionComponent<Props> = ({ policy, on
description={
<FormattedMessage
id="xpack.snapshotRestore.policyForm.stepSettings.includeFeatureStatesDescription"
defaultMessage="Stores the configuration, history, and other data stored in Elasticsearch by a feature such as Elasticsearch security."
defaultMessage="Includes the configuration, history, and other data stored in Elasticsearch by a feature such as Elasticsearch security."
/>
}
fullWidth
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const PolicyFeatureStatesSummary: React.FunctionComponent<SnapshotConfig>
{hasAllFeatureStates && (
<FormattedMessage
id="xpack.snapshotRestore.summary.policyAllFeatureStatesLabel"
defaultMessage="From all features"
defaultMessage="All features"
/>
)}
{!hasNoFeatureStates && !hasAllFeatureStates && (
Expand Down

0 comments on commit 1413dd6

Please sign in to comment.