From 529945bf424ef5a7fe6bb6d36c9e608f186c6627 Mon Sep 17 00:00:00 2001 From: Angela Chuang <6295984+angorayc@users.noreply.github.com> Date: Tue, 29 Oct 2019 09:22:53 -0400 Subject: [PATCH] fix query id for tls selector (#49540) --- x-pack/legacy/plugins/siem/public/containers/tls/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/legacy/plugins/siem/public/containers/tls/index.tsx b/x-pack/legacy/plugins/siem/public/containers/tls/index.tsx index 4fd24b9cb42a5..7abe14ae745c5 100644 --- a/x-pack/legacy/plugins/siem/public/containers/tls/index.tsx +++ b/x-pack/legacy/plugins/siem/public/containers/tls/index.tsx @@ -143,7 +143,7 @@ class TlsComponentQuery extends QueryTemplatePaginated< const makeMapStateToProps = () => { const getTlsSelector = networkSelectors.tlsSelector(); const getQuery = inputsSelectors.globalQueryByIdSelector(); - return (state: State, { flowTarget, id = `${ID}-${flowTarget}`, type }: OwnProps) => { + return (state: State, { flowTarget, id = ID, type }: OwnProps) => { const { isInspected } = getQuery(state, id); return { ...getTlsSelector(state, type, flowTarget),