Skip to content

Commit

Permalink
Swap env filter with percentile
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzad31 committed Nov 2, 2020
1 parent a6dc527 commit f061093
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ export function MainFilters() {
serviceNames={data ?? []}
/>
</EuiFlexItem>
<EuiFlexItem grow={false}>
<UserPercentile />
</EuiFlexItem>
<EuiFlexItem grow={false} style={{ maxWidth: 200 }}>
<EnvironmentFilter />
</EuiFlexItem>
<EuiFlexItem grow={false}>
<UserPercentile />
</EuiFlexItem>
</>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function ServiceNameFilter({ loading, serviceNames }: Props) {
prepend={i18n.translate(
'xpack.apm.ux.localFilters.titles.webApplication',
{
defaultMessage: 'Web Application',
defaultMessage: 'Web application',
}
)}
isLoading={loading}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ export function EnvironmentFilter() {

return (
<EuiSelect
prepend={i18n.translate('xpack.apm.filter.environment.label', {
defaultMessage: 'environment',
prepend={i18n.translate('xpack.apm.filter.ux.environment.label', {
defaultMessage: 'Environment',
})}
options={getOptions(environments)}
value={environment || ENVIRONMENT_ALL.value}
Expand Down

0 comments on commit f061093

Please sign in to comment.