From 9caf99a1b18791a38adf66a78ca6eea8d580385c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Louv-Jansen?= Date: Tue, 15 Sep 2020 23:46:52 +0200 Subject: [PATCH] Fix missing transactionType --- .../alerting/TransactionErrorRateAlertTrigger/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/apm/public/components/alerting/TransactionErrorRateAlertTrigger/index.tsx b/x-pack/plugins/apm/public/components/alerting/TransactionErrorRateAlertTrigger/index.tsx index 77f4001ea51d9ed..f931c133d07f570 100644 --- a/x-pack/plugins/apm/public/components/alerting/TransactionErrorRateAlertTrigger/index.tsx +++ b/x-pack/plugins/apm/public/components/alerting/TransactionErrorRateAlertTrigger/index.tsx @@ -39,7 +39,7 @@ export function TransactionErrorRateAlertTrigger(props: Props) { const { urlParams } = useUrlParams(); const transactionTypes = useServiceTransactionTypes(urlParams); const { serviceName } = useParams<{ serviceName?: string }>(); - const { start, end } = urlParams; + const { start, end, transactionType } = urlParams; const { environmentOptions } = useEnvironments({ serviceName, start, end }); if (!transactionTypes.length || !serviceName) {