Skip to content

Commit

Permalink
fleet name chanegs
Browse files Browse the repository at this point in the history
  • Loading branch information
neptunian committed Jul 6, 2020
1 parent 4862574 commit 56558e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ export const CreatePackageConfigPage: React.FunctionComponent = () => {
title: i18n.translate(
'xpack.ingestManager.createPackageConfig.stepDefinePackageConfigTitle',
{
defaultMessage: 'Define your integration',
defaultMessage: 'Configure integration',
}
),
status: !packageInfo || !agentConfig ? 'disabled' : undefined,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export const AgentListPage: React.FunctionComponent<{}> = () => {
{
field: 'config_id',
name: i18n.translate('xpack.ingestManager.agentList.configColumnTitle', {
defaultMessage: 'Configuration',
defaultMessage: 'Agent config',
}),
render: (configId: string, agent: Agent) => {
const configName = agentConfigs.find((p) => p.id === configId)?.name;
Expand Down Expand Up @@ -445,7 +445,7 @@ export const AgentListPage: React.FunctionComponent<{}> = () => {
>
<FormattedMessage
id="xpack.ingestManager.agentList.configFilterText"
defaultMessage="Configs"
defaultMessage="Agent config"
/>
</EuiFilterButton>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const EnrollmentTokenListPage: React.FunctionComponent<{}> = () => {
{
field: 'config_id',
name: i18n.translate('xpack.ingestManager.enrollmentTokensList.configTitle', {
defaultMessage: 'Config',
defaultMessage: 'Agent config',
}),
render: (configId: string) => {
const config = agentConfigs.find((c) => c.id === configId);
Expand Down

0 comments on commit 56558e5

Please sign in to comment.