Skip to content

Commit

Permalink
[APM] Fix missing transaction message (elastic#25353) (elastic#25411)
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv authored Nov 8, 2018
1 parent 29e37f0 commit 16f0514
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@ import { IUrlParams } from '../urlParams';
import { createInitialDataSelector } from './helpers';

const ID = 'transactionDetails';
const INITIAL_DATA = {};
const withInitialData = createInitialDataSelector(INITIAL_DATA);

export function getTransactionDetails(state: IReduxState) {
return withInitialData(state.reactReduxRequest[ID]);
return state.reactReduxRequest[ID];
}

export function TransactionDetailsRequest({
Expand Down

0 comments on commit 16f0514

Please sign in to comment.