From 7b45dd6f9275da434d719fb99222ffd6e581f006 Mon Sep 17 00:00:00 2001 From: Mike Ball Date: Wed, 23 Feb 2022 15:23:09 -0500 Subject: [PATCH] restore accidentally-committed change This restores `eventsRestEndpoint` to its proper state. Signed-off-by: Mike Ball --- .../splunk-on-call/src/components/EntitySplunkOnCallCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/splunk-on-call/src/components/EntitySplunkOnCallCard.tsx b/plugins/splunk-on-call/src/components/EntitySplunkOnCallCard.tsx index ed452ab487..5784ccd8be 100644 --- a/plugins/splunk-on-call/src/components/EntitySplunkOnCallCard.tsx +++ b/plugins/splunk-on-call/src/components/EntitySplunkOnCallCard.tsx @@ -129,7 +129,7 @@ export const EntitySplunkOnCallCard = ({ readOnly }: Props) => { : undefined; const eventsRestEndpoint = - config.getOptionalString('splunkOnCall.eventsRestEndpoint') || true; + config.getOptionalString('splunkOnCall.eventsRestEndpoint') || null; const handleRefresh = useCallback(() => { setRefreshIncidents(x => !x);