Skip to content

Commit

Permalink
type fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
smith committed Nov 20, 2020
1 parent 9b09ccf commit 8ecf027
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import { IUrlParams } from '../../../../context/UrlParamsContext/types';
import { FETCH_STATUS } from '../../../../hooks/useFetcher';
import { ITransactionChartData } from '../../../../selectors/chart_selectors';
import { TransactionBreakdown } from '../../TransactionBreakdown';
import { getTPMTooltipFormatter } from '../helper/helper';
import { TimeseriesChart } from '../timeseries_chart';
import { TransactionErrorRateChart } from '../transaction_error_rate_chart/';
import { getResponseTimeTickFormatter } from './helper';
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/apm/server/lib/services/get_throughput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function fetcher({
transactionType,
}: Options) {
const { start, end, apmEventClient } = setup;
const { intervalString } = getBucketSize(start, end);
const { intervalString } = getBucketSize({ start, end });
const filter: ESFilter[] = [
{ term: { [SERVICE_NAME]: serviceName } },
{ term: { [TRANSACTION_TYPE]: transactionType } },
Expand Down

0 comments on commit 8ecf027

Please sign in to comment.