Skip to content

Commit

Permalink
Fix casing (#119550)
Browse files Browse the repository at this point in the history
  • Loading branch information
jen-huang authored Nov 24, 2021
1 parent cccc54f commit 6a8e977
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ export function Detail() {
name: (
<FormattedMessage
id="xpack.fleet.epm.packageDetailsNav.packagePoliciesLinkText"
defaultMessage="Integration Policies"
defaultMessage="Integration policies"
/>
),
isSelected: panel === 'policies',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export const PackagePoliciesPage = ({ name, version }: PackagePoliciesPanelProps
{
field: 'packagePolicy.name',
name: i18n.translate('xpack.fleet.epm.packageDetails.integrationList.name', {
defaultMessage: 'Integration Policy',
defaultMessage: 'Integration policy',
}),
render(_, { packagePolicy }) {
return <IntegrationDetailsLink packagePolicy={packagePolicy} />;
Expand Down Expand Up @@ -269,7 +269,7 @@ export const PackagePoliciesPage = ({ name, version }: PackagePoliciesPanelProps
{
field: 'packagePolicy.updated_by',
name: i18n.translate('xpack.fleet.epm.packageDetails.integrationList.updatedBy', {
defaultMessage: 'Last Updated By',
defaultMessage: 'Last updated by',
}),
truncateText: true,
render(updatedBy) {
Expand All @@ -279,7 +279,7 @@ export const PackagePoliciesPage = ({ name, version }: PackagePoliciesPanelProps
{
field: 'packagePolicy.updated_at',
name: i18n.translate('xpack.fleet.epm.packageDetails.integrationList.updatedAt', {
defaultMessage: 'Last Updated',
defaultMessage: 'Last updated',
}),
truncateText: true,
render(updatedAt: InMemoryPackagePolicyAndAgentPolicy['packagePolicy']['updated_at']) {
Expand Down

0 comments on commit 6a8e977

Please sign in to comment.