From 97afdd6b74103ad6a2d58e553f8b87700e4d31fd Mon Sep 17 00:00:00 2001 From: Abel Rodriguez Date: Wed, 20 Sep 2023 22:17:41 -0500 Subject: [PATCH] update console log messages --- .../src/components/pipelines/PipelineExecutions.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spin-observatory-plugin-deck/src/components/pipelines/PipelineExecutions.tsx b/spin-observatory-plugin-deck/src/components/pipelines/PipelineExecutions.tsx index 85237f7..3fe9fbc 100644 --- a/spin-observatory-plugin-deck/src/components/pipelines/PipelineExecutions.tsx +++ b/spin-observatory-plugin-deck/src/components/pipelines/PipelineExecutions.tsx @@ -93,7 +93,7 @@ export const PipelineExecutions = ({ } setIsRequestInProgress(true); - console.log('making a request...'); + console.log("making a request..."); const resp = await gate.getExecutions(appName, { pipelineName: pipeline.name, @@ -103,7 +103,7 @@ export const PipelineExecutions = ({ }); setIsRequestInProgress(false); - console.log('request completed.'); + console.log("request completed."); setExecutions(resp); setFilteredExecutions(filterExecutions(resp));