Skip to content

Commit

Permalink
Removes old comments and duplicate imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrhodes committed Aug 22, 2018
1 parent b9efa46 commit 0e0434e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions x-pack/plugins/apm/public/store/selectors/chartSelectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import {
asDecimal,
tpmUnit
} from '../../utils/formatters';
import { rgba } from 'polished';

export const getEmptySerie = memoize(
(start = Date.now() - 3600000, end = Date.now()) => {
Expand Down Expand Up @@ -92,7 +91,7 @@ export function getResponseTimeSeries(chartsData) {
),
type: 'area',
color: 'none',
areaColor: rgba(colors.apmBlue, 0.1) //'rgba(49, 133, 252, 0.1)' // apmBlue
areaColor: rgba(colors.apmBlue, 0.1)
});

series.splice(1, 0, {
Expand All @@ -106,7 +105,7 @@ export function getResponseTimeSeries(chartsData) {
),
type: 'areaMaxHeight',
color: 'none',
areaColor: rgba(colors.apmRed, 0.1) //'rgba(146, 0, 0, 0.1)' // apmRed
areaColor: rgba(colors.apmRed, 0.1)
});
}

Expand Down

0 comments on commit 0e0434e

Please sign in to comment.